Advertisement
srikat

Untitled

Jun 30th, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. // Remove post info on single Posts and Posts page
  2. add_action( 'genesis_before_entry', 'sk_remove_post_info' );
  3. function sk_remove_post_info() {
  4.  
  5. if ( ! ( is_singular( 'post' ) || is_home() ) ) {
  6. return;
  7. }
  8.  
  9. remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
  10.  
  11. }
  12.  
  13. // Customize entry meta in the entry footer on single Posts and Posts page
  14. // http://my.studiopress.com/docs/shortcode-reference/#post-shortcodes
  15. add_filter( 'genesis_post_meta', 'sp_post_meta_filter' );
  16. function sp_post_meta_filter( $post_meta ) {
  17.  
  18. if ( ! ( is_singular( 'post' ) || is_home() ) ) {
  19. return;
  20. }
  21.  
  22. $post_meta = 'Published: [post_date] by [post_author_posts_link] [post_comments] [post_edit] [post_categories before="Filed Under: "] [post_tags before="Tagged: "]';
  23.  
  24. return $post_meta;
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement