Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Created December 15, 2014 02:35
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 Kaiderella/017b168f632f4e5537c1 to your computer and use it in GitHub Desktop.
Save Kaiderella/017b168f632f4e5537c1 to your computer and use it in GitHub Desktop.
Tùy biến Genesis post meta
//* Customize the entry meta in the entry footer
add_filter( 'genesis_post_meta', 'post_meta_filter' );
function post_meta_filter( $post_meta ) {
$post_meta = 'Posted on [post_date] by [post_author_posts_link] under [post_categories before=""] with tag [post_tags before=""][post_edit]';
return $post_meta;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment