Created
September 15, 2014 03:03
-
-
Save iamcanadian1973/fa0335a18569404b09a1 to your computer and use it in GitHub Desktop.
Wrap content for FacetWP
This file contains hidden or 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
add_action('genesis_before_loop', 'kr_facetwp_start'); | |
function kr_facetwp_start() { | |
echo '<div class="facetwp-template">'; | |
} | |
add_action('genesis_after_loop', 'kr_facetwp_end'); | |
function kr_facetwp_end() { | |
echo '</div><!-- close facetwp-->'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment