Skip to content

Instantly share code, notes, and snippets.

@authentikHQ
Last active October 18, 2018 13:48
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 authentikHQ/4e33b8055aaf5e5738baeab10c214b2a to your computer and use it in GitHub Desktop.
Save authentikHQ/4e33b8055aaf5e5738baeab10c214b2a to your computer and use it in GitHub Desktop.
Customize entry meta in entry footer with the Genesis Framework.
<?php
// Do NOT include the opening php tag.
// Customize entry meta in entry footer.
add_filter( 'genesis_post_meta', 'athk_entry_meta_footer' );
function athk_entry_meta_footer($post_meta) {
$post_meta = '[post_categories] [post_tags]';
return $post_meta;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment