Advertisement
srikat

Untitled

Aug 1st, 2014
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. add_filter( 'genesis_post_info', 'sk_post_info_filter' );
  2. function sk_post_info_filter($post_info) {
  3.     if ( is_sticky( ) ) {
  4.         $post_info = 'by [post_author_posts_link] [post_comments] [post_edit]';
  5.     }
  6.     else {
  7.         $post_info = '[post_date] by [post_author_posts_link] [post_comments] [post_edit]';
  8.     }
  9.     return $post_info;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement