Skip to content

Instantly share code, notes, and snippets.

@arkadiusjonczek
Created November 12, 2015 08:26
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 arkadiusjonczek/bb0a656ea9606ecdd3b0 to your computer and use it in GitHub Desktop.
Save arkadiusjonczek/bb0a656ea9606ecdd3b0 to your computer and use it in GitHub Desktop.
Genesis change post info
//* Customize the post info function
add_filter( 'genesis_post_info', 'custom_post_info_filter' );
function custom_post_info_filter( $post_info ) {
if ( !is_page() ) {
$post_info = '[post_author] [post_comments zero="Kommentar hinterlassen" one="1 Kommentar" more="% Kommentare"] [post_edit]';
return $post_info;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment