Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created June 2, 2013 23:16
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 wpspeak/5695305 to your computer and use it in GitHub Desktop.
Save wpspeak/5695305 to your computer and use it in GitHub Desktop.
Customize post info in Genesis Framework
<?php
// Customize post info in Genesis Framework
add_filter( 'genesis_post_info', 'post_info_filter' );
function post_info_filter($post_info) {
if ( !is_page() ) {
$post_info = '[post_date] by [post_author_posts_link] [post_comments] [post_edit]';
return $post_info;
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment