Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created November 6, 2012 13:44
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/4024820 to your computer and use it in GitHub Desktop.
Save billerickson/4024820 to your computer and use it in GitHub Desktop.
/**
* Remove Meta Viewport Tag on Grid Loop
*
*/
function be_grid_loop_remove_viewport() {
$grid = be_grid_loop_pagination();
if( $grid )
remove_action( 'genesis_meta', 'prose_add_viewport_meta_tag' );
}
add_action( 'genesis_meta', 'be_grid_loop_remove_viewport', 5 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment