Skip to content

Instantly share code, notes, and snippets.

@mklasen
Created January 18, 2017 11:54
Show Gist options
  • Save mklasen/dafab597b8e8cf5ed65ff3bece0c8d17 to your computer and use it in GitHub Desktop.
Save mklasen/dafab597b8e8cf5ed65ff3bece0c8d17 to your computer and use it in GitHub Desktop.
WordPress: Wrap content output in a div
<?php
add_action('loop_start', function() {
// Only for archive
if (is_archive()) {
echo '<!--- Start loop wrap --><div class="wrap">';
}
});
add_action('loop_end', function() {
// Only for archive
if (is_archive()) {
echo '</div><!--- END loop wrap -->';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment