Advertisement
srikat

Untitled

Apr 2nd, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. add_filter( 'genesis_post_meta', 'sp_post_meta_filter' );
  2. /**
  3. * Customize entry meta.
  4. *
  5. * @param string $post_meta Existing post meta.
  6. * @return Amended post meta.
  7. */
  8. function sp_post_meta_filter( $post_meta ) {
  9.  
  10. $post_meta = '[post_categories sep=" "]';
  11.  
  12. return $post_meta;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement