Created
November 16, 2016 04:02
-
-
Save jpen365/8edb24acd33f09713f9ac1596f67177b to your computer and use it in GitHub Desktop.
Define widget output
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
<?php | |
echo $args['before_widget'] . $args['before_title'] . $title . $args['after_title']; ?> | |
<div class="row"> | |
<div class="col-lg-6"><?php | |
foreach( $cat_col_one as $cat_one ) { | |
echo $cat_one; | |
} ?> | |
</div> | |
<div class="col-lg-6"><?php | |
foreach( $cat_col_two as $cat_two ) { | |
echo $cat_two; | |
} ?> | |
</div> | |
</div><?php | |
echo $args['after_widget']; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment