Bạn hãy chèn đoạn mã sau vào file functions.php của theme đang sử dụng
add_action('login_head', 'wpex_custom_login_scripts', 1);
function wpex_custom_login_scripts()
{
echo '<script>
document.addEventListener("DOMContentLoaded", function(event) {
document.getElementById("user_login").placeholder="'.__("Username / Email").'";
document.getElementById("user_pass").placeholder="'.__("Password").'";
})
</script>';
}