Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created October 30, 2011 04:42
Show Gist options
  • Save billerickson/1325500 to your computer and use it in GitHub Desktop.
Save billerickson/1325500 to your computer and use it in GitHub Desktop.
Genesis Post Meta
<?php
/**
* Modify Post Meta
* @author Bill Erickson
* @link http://www.billerickson.net/code/genesis-post-meta
*
* @param string original post meta
* @return string modified post meta
*/
function be_post_meta_filter($post_meta) {
$post_meta = '[ post_categories ] Tagged with [ post_tags ]';
return $post_meta;
}
add_filter('genesis_post_meta', 'be_post_meta_filter');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment