Advertisement
srikat

Untitled

Apr 2nd, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. // Reposition headline and / or description
  2.  
  3. // For category / tag / taxonomy archive pages
  4. remove_action( 'genesis_before_loop', 'genesis_do_taxonomy_title_description', 15 );
  5. add_action( 'genesis_before_content', 'genesis_do_taxonomy_title_description' );
  6.  
  7. // For author archive pages
  8. remove_action( 'genesis_before_loop', 'genesis_do_author_title_description', 15 );
  9. add_action( 'genesis_before_content', 'genesis_do_author_title_description' );
  10.  
  11. // For relevant custom post type archive pages
  12. remove_action( 'genesis_before_loop', 'genesis_do_cpt_archive_title_description' );
  13. add_action( 'genesis_before_content', 'genesis_do_cpt_archive_title_description' );
  14.  
  15. // For date archive pages
  16. remove_action( 'genesis_before_loop', 'genesis_do_date_archive_title' );
  17. add_action( 'genesis_before_content', 'genesis_do_date_archive_title' );
  18.  
  19. // For Posts page
  20. remove_action( 'genesis_before_loop', 'genesis_do_posts_page_heading' );
  21. add_action( 'genesis_before_content', 'genesis_do_posts_page_heading' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement