Merubah Logo dan Background Login Wordpress.org
Seperti tertulis pada judul, berikut akan saya jelaskan cara merubah logo dan background pada halaman login wordpress.org Creating your own custom wordpress login page is a lot easier than you may think. First you will need to open the functions.php file for the theme you are going to be using. This should be located at ~/public_html/wp-content/themes/ yourtheme /functions.php Replace yourtheme with the theme you will be using. Example Preview You will need to add the following lines of code to the bottom of your functions.php file: Full Code add_action ( "login_head" , "login_mod" ) ; function login_mod ( ) { echo " " ; } add_filter ( 'login_headerurl' , create_function ( false , "return 'http://smyl.es';" ) ) ; Breakdown Hook the Function First we will use add_action ( WordPress Codex ) to create the hook for login_head to our function we named login_mod . add_action (...