Skip to content

Instantly share code, notes, and snippets.

View photoaddictsa's full-sized avatar

Edward Labuschagne photoaddictsa

  • line16
  • South Africa
View GitHub Profile
@photoaddictsa
photoaddictsa / archive-fixtures.php
Created September 22, 2017 19:14
Custom loop in genesis archive
<?php
remove_action( 'genesis_loop', 'genesis_do_loop' );
add_action( 'genesis_loop', 'your_custom_loop' );
// Remove custom structural wraps.
remove_action( 'genesis_before_content_sidebar_wrap', 'studio_wrap_open', 6 );
remove_action( 'genesis_after_content_sidebar_wrap', 'studio_wrap_close', 13 );
function your_custom_loop() {