1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
/** Custom walker for wp_dropdown_categories for media grid view filter */ class Mediamatic_Walker_Category_Mediagridfilter extends Walker_CategoryDropdown { function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) { $pad = str_repeat( ' ', $depth * 3 ); if(isset($category->name)) { $cat_name = apply_filters( 'list_cats', $category->name, $category ); $output .= ',{"term_id":"' . $category->term_id . '",';
$output .= '"term_name":"' . $pad . esc_attr( $cat_name ); if ( $args['show_count'] ) {
$output .= ' '; } $output .= '"}'; } }
}
|