Placeholder text is the text that appears in a field before the user inputs data. Usually this text gives an example of what the user would type into the field, or lets the user know what that field is supposed to contain. e.g. For the Email field, you might put the word ‘Email’, or an example email address.
Se quiser adicionar texto de espaço reservado aos campos do formulário de login, você pode incluir o seguinte código no conteúdo da página de login:
<script>
jQuery(function() {
jQuery('#log').attr('placeholder', 'Username');
jQuery('#pwd').attr('placeholder', 'Password');
});
</script>
Observação: the default WordPress editor restricts the <script> tag. You’ll need to use the method of your choice to insert the above code into your content. Scripts e estilos é um exemplo de um plug-in de terceiros que permite adicionar o código acima a uma página ou publicação.

