-
-
Save nickcernis/6974286 to your computer and use it in GitHub Desktop.
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
<?php | |
//* Do NOT include the opening php tag | |
//* Customize the author box title | |
add_filter( 'genesis_author_box_title', 'custom_author_box_title' ); | |
function custom_author_box_title() { | |
return '<strong>About the Author</strong>'; | |
} |
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
<?php | |
//* Do NOT include the opening php tag | |
//* Display author box on archive pages | |
add_filter( 'get_the_author_genesis_author_box_archive', '__return_true' ); |
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
<?php | |
//* Do NOT include the opening php tag | |
//* Display author box on single posts | |
add_filter( 'get_the_author_genesis_author_box_single', '__return_true' ); |
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
<?php | |
//* Do NOT include the opening php tag | |
//* Modify the size of the Gravatar in the author box | |
add_filter( 'genesis_author_box_gravatar_size', 'author_box_gravatar_size' ); | |
function author_box_gravatar_size( $size ) { | |
return '80'; | |
} |
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
<?php | |
//* Do NOT include the opening php tag | |
//* Remove the author box on single posts | |
remove_action( 'genesis_after_post', 'genesis_do_author_box_single' ); | |
remove_action( 'genesis_after_entry', 'genesis_do_author_box_single', 8 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment