How Category to Display Like Tree in Customizer
-
I’m trying to call category in wordpress customizer and show sub category as tree like this
Cat 1
Parent cat
-sub cat
-Sub cat
–sub 2
Hope you get what I’m asking here is my code I’m using but it display as list only.if ( ! class_exists( 'WP_Customize_Control' ) ) return NULL; /** * A class to create a dropdown for all categories in your wordpress site */ class Category_Dropdown_Custom_Control extends WP_Customize_Control { private $cats = false; public function __construct($manager, $id, $args = array(), $options = array()) { $this->cats = get_categories($options); parent::__construct( $manager, $id, $args ); } /** * Render the content of the category dropdown * * @return HTML */ public function render_content() { if(!empty($this->cats)) { ?> <label> <span class="customize-category-select-control"><?php echo esc_html( $this->label ); ?></span> <select <?php $this->link(); ?>> <?php foreach ( $this->cats as $cat ) { printf('<option value="%s" %s>%s</option>', $cat->term_id, selected($this->value(), $cat->term_id, false), $cat->name); } ?> </select> </label> <?php } } }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How Category to Display Like Tree in Customizer’ is closed to new replies.