Skip to content

Instantly share code, notes, and snippets.

@jpen365
Created November 16, 2016 04:00
Show Gist options
  • Save jpen365/1b29912ef4ac118926a385ae237c442e to your computer and use it in GitHub Desktop.
Save jpen365/1b29912ef4ac118926a385ae237c442e to your computer and use it in GitHub Desktop.
Variables for the category list sidebar widget.
<?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