Skip to content

Instantly share code, notes, and snippets.

@studiopress
Created September 21, 2017 13:42
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 studiopress/17c246f889a94804c7ca62cb0d82d50d to your computer and use it in GitHub Desktop.
Save studiopress/17c246f889a94804c7ca62cb0d82d50d to your computer and use it in GitHub Desktop.
Hook Photo Grid widget area after header.
<?php
// Do NOT include the opening php tag.
// Add photo grid widget area after header.
add_action( 'genesis_after_header', 'sp_photo_grid_widget' );
function sp_photo_grid_widget() {
genesis_widget_area( 'photo-grid', array(
'before' => '<div class="photo-grid"><div class="wrap">',
'after' => '</div></div>',
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment