This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Change Powered by WordPress */ | |
add_filter('login_headertitle', 'eo_login_logo_url_desc'); | |
function eo_login_logo_url_desc() | |
{ | |
return bloginfo('name'); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Change the WordPress Login Logo */ | |
add_action('login_head', 'eo_login_logo'); | |
function eo_login_logo() | |
{ | |
echo | |
'<style type="text/css"> | |
login h1 a | |
{ | |
background-image: url(' . get_bloginfo('template_directory') . '/images/login-logo.png) !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Move Genesis Comments */ | |
add_action( 'genesis_before_comments' , 'eo_move_comments' ); | |
function eo_move_comments () | |
{ | |
if ( is_single() && have_comments() ) | |
{ | |
remove_action( 'genesis_comment_form', 'genesis_do_comment_form' ); | |
add_action( 'genesis_comments', 'genesis_do_comment_form', 5 ); | |
} | |
} |
NewerOlder