Created
February 5, 2013 21:42
-
-
Save kraftbj/4718003 to your computer and use it in GitHub Desktop.
Family Tree from Genesis - Make dates look fancy on home page
This file contains 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
add_action( 'template_redirect', 'familytree_conditional_actions' ); | |
/** | |
* Switch out default Genesis post info creation for Family Tree version. | |
* | |
* @since 1.0 | |
*/ | |
function familytree_conditional_actions() { | |
if ( is_page_template( 'page_blog.php' ) || is_post_type_archive() || is_singular( 'post' ) || is_home() ) { | |
remove_action( 'genesis_before_post_content', 'genesis_post_info' ); | |
add_action( 'genesis_before_post_content', 'familytree_post_info' ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment