I am trying to add text in the login form above username. i tried some code in fuctions.php file but nothing is showing in the frontend of wp-login page.
this the function i have created.
function filter_login_form_top_text( $var ) {
// make filter magic happen here...
$var = "Login to view the manual - into login form";
return $var; }; add_filter( 'login_form_top', 'filter_login_form_top_text', 10, 2 );
we are using default wordpress login from
i am following this link to make changes
can anyone please help me to make this changes
Add this to your theme’s
functions.php
file to add text above the login form:i added to replace the label text with the text i required…