Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Reposition headline and / or description
- // For category / tag / taxonomy archive pages
- remove_action( 'genesis_before_loop', 'genesis_do_taxonomy_title_description', 15 );
- add_action( 'genesis_before_content', 'genesis_do_taxonomy_title_description' );
- // For author archive pages
- remove_action( 'genesis_before_loop', 'genesis_do_author_title_description', 15 );
- add_action( 'genesis_before_content', 'genesis_do_author_title_description' );
- // For relevant custom post type archive pages
- remove_action( 'genesis_before_loop', 'genesis_do_cpt_archive_title_description' );
- add_action( 'genesis_before_content', 'genesis_do_cpt_archive_title_description' );
- // For date archive pages
- remove_action( 'genesis_before_loop', 'genesis_do_date_archive_title' );
- add_action( 'genesis_before_content', 'genesis_do_date_archive_title' );
- // For Posts page
- remove_action( 'genesis_before_loop', 'genesis_do_posts_page_heading' );
- add_action( 'genesis_before_content', 'genesis_do_posts_page_heading' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement