Created
September 21, 2017 13:42
-
-
Save studiopress/17c246f889a94804c7ca62cb0d82d50d to your computer and use it in GitHub Desktop.
Hook Photo Grid widget area after header.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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