Advertisement
srikat

Untitled

May 13th, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. //* Customize entry meta in the entry header
  2. add_filter( 'genesis_post_info', 'sp_post_info_filter' );
  3. function sp_post_info_filter($post_info) {
  4.     if ( is_archive() ) {
  5.         $post_info = '[post_date] [post_edit]';
  6.         return $post_info;
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement