Skip to content

Instantly share code, notes, and snippets.

@riskiii
Forked from billerickson/gist:1325499
Created March 11, 2012 04:38
Show Gist options
  • Save riskiii/2015051 to your computer and use it in GitHub Desktop.
Save riskiii/2015051 to your computer and use it in GitHub Desktop.
Genesis: Post Info
<?php
/**
* Modify Post Info
* @author Bill Erickson
* @link http://www.billerickson.net/code/genesis-post-info/
*
* @param string original post info
* @return string modified post info
*/
function be_post_info_filter($post_info) {
$post_info = '[ post_date ] by [ post_author_posts_link ] at [ post_time ] [ post_comments ] [ post_edit ]';
return $post_info;
}
add_filter('genesis_post_info', 'be_post_info_filter');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment