Skip to content

Instantly share code, notes, and snippets.

@jpen365
Created November 16, 2016 04:02
Show Gist options
  • Save jpen365/8edb24acd33f09713f9ac1596f67177b to your computer and use it in GitHub Desktop.
Save jpen365/8edb24acd33f09713f9ac1596f67177b to your computer and use it in GitHub Desktop.
Define widget output
<?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