Skip to content

Instantly share code, notes, and snippets.

@andyspicer
Created March 14, 2013 15:05
Show Gist options
  • Save andyspicer/5162072 to your computer and use it in GitHub Desktop.
Save andyspicer/5162072 to your computer and use it in GitHub Desktop.
WP - Genesis Custom Loop Empty
/** Replace the standard loop with our custom loop */
remove_action( 'genesis_loop', 'genesis_do_loop' );
add_action( 'genesis_loop', 'rgp_do_custom_loop' );
function rgp_do_custom_loop() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment