Skip to content

Instantly share code, notes, and snippets.

@jonwatson87
Created June 20, 2016 23:32
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 jonwatson87/377930b6c1666e116135932619fd1f5b to your computer and use it in GitHub Desktop.
Save jonwatson87/377930b6c1666e116135932619fd1f5b to your computer and use it in GitHub Desktop.
Replace default genesis loop with custom content/layout
// Replace default genesis loop
remove_action( 'genesis_loop', 'genesis_do_loop' );
add_action( 'genesis_loop', 'your_custom_loop' );
function your_custom_loop() {
// Custom Content Here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment