Advertisement
srikat

Untitled

Mar 2nd, 2018
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. add_filter( 'genesis_post_info', 'daily_dish_single_post_info_filter' );
  2. /**
  3. * Customize entry meta in entry header.
  4. *
  5. * @param string $post_info The entry meta.
  6. * @since 1.0.0
  7. *
  8. * @return string Modified entry meta.
  9. */
  10. function daily_dish_single_post_info_filter( $post_info ) {
  11.  
  12. $post_info = '[post_author_posts_link] · [post_comments] [post_edit]';
  13.  
  14. return $post_info;
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement