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
/** | |
* @author (Scott) Agirs Neminskis | |
* @contact [email protected] | |
*/ | |
// Wrap Genesis Post Loops in an additional element ( div, p, a, or any other ) | |
add_action ( 'genesis_before_loop', 'an_extra_loop_wrapper_open' ); | |
add_action ( 'genesis_after_loop', 'an_extra_loop_wrapper_close' ); | |
function an_extra_loop_wrapper_open() { |