Skip to content

Instantly share code, notes, and snippets.

@riskiii
Forked from billerickson/gist:1325500
Created March 11, 2012 04:38
Show Gist options
  • Save riskiii/2015052 to your computer and use it in GitHub Desktop.
Save riskiii/2015052 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