Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created May 23, 2017 02:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/7601a523d06e75512656dbd139b2433d to your computer and use it in GitHub Desktop.
Save braddalton/7601a523d06e75512656dbd139b2433d to your computer and use it in GitHub Desktop.
Reposition Post Categories Below Post Info In Entry Header https://wp.me/p1lTu0-gRr
add_filter( 'genesis_post_meta', 'sp_post_meta_filter' );
function sp_post_meta_filter($post_meta) {
$post_meta = '[post_tags]';
return $post_meta;
}
add_action( 'genesis_entry_header', 'add_post_categories', 99 );
function add_post_categories() {
echo '<p class="entry-meta">' . do_shortcode('[post_categories]') . '<p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment