Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created April 10, 2017 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/3d42a6e7f89b340821a3273943989066 to your computer and use it in GitHub Desktop.
Save billerickson/3d42a6e7f89b340821a3273943989066 to your computer and use it in GitHub Desktop.
<?php
/**
* Remove archive intro on subsequent pages
*
*/
function be_remove_archive_intro() {
if( get_query_var( 'paged' ) )
remove_action( 'genesis_before_loop', 'genesis_do_taxonomy_title_description', 15 );
}
add_action( 'genesis_meta', 'be_remove_archive_intro' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment