Advertisement
srikat

Untitled

Jun 8th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. // Customize the entry meta in the entry footer
  4. add_filter( 'genesis_post_meta', 'sk_post_meta_filter' );
  5. function sk_post_meta_filter( $post_meta ) {
  6.  
  7. $post_meta = 'Written by [post_author_posts_link]';
  8. return $post_meta;
  9.  
  10. }
  11.  
  12. genesis();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement