Created
November 16, 2016 04:00
-
-
Save jpen365/1b29912ef4ac118926a385ae237c442e to your computer and use it in GitHub Desktop.
Variables for the category list sidebar widget.
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
<?php | |
$title = apply_filters( 'widget_title', $instance[ 'title' ] ); | |
$categories = get_categories( array( | |
'orderby' => 'name', | |
'order' => 'ASC' | |
) ); | |
$cat_count = 0; | |
$cat_col_one = []; | |
$cat_col_two = []; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment