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.
Si desea añadir texto de marcador de posición a los campos del formulario de inicio de sesión, puede incluir el siguiente código en el contenido de su página de inicio de sesión:
<script>
jQuery(function() {
jQuery('#log').attr('placeholder', 'Username');
jQuery('#pwd').attr('placeholder', 'Password');
});
</script>
Nota: 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. Guiones y estilos es un ejemplo de plugin de terceros que le permitirá añadir el código anterior a una página o entrada.

