Örnek:
array( '12' => 'Bakım', '13' => 'Beslenme', '14' => 'Eğitim', '15' => 'Sağlık', '16' => 'Moda', 'A7' => 'Spor', '18' => 'Araba' )
2
●84
array( '12' => 'Bakım', '13' => 'Beslenme', '14' => 'Eğitim', '15' => 'Sağlık', '16' => 'Moda', 'A7' => 'Spor', '18' => 'Araba' )
$output_categories = array(); $categories=get_categories(); foreach($categories as $category) { $output_categories[$category->cat_ID] = $category->name; }
$wp_customize->add_control( new Laura_Dropdown_Select2_Custom_Control( $wp_customize, 'laura_featured_content_cat', array( 'label' => __( 'Category', 'laura' ), 'description' => esc_html__( 'Choosing one or more categories, display the latest published content of the relevant category.', 'laura' ), 'section' => 'laura_home_featured_content', 'input_attrs' => array( 'multiselect' => true, ), 'choices' => array( '12' => 'Bakım', '13' => 'Beslenme', '14' => 'Eğitim' ) ) ));
$output_categories = array(); $categories = get_categories(); foreach($categories as $category) { $output_categories[$category->cat_ID] = $category->name; } $wp_customize->add_control( new Laura_Dropdown_Select2_Custom_Control( $wp_customize, 'laura_featured_content_cat', array( 'label' => __( 'Category', 'laura' ), 'description' => esc_html__( 'Choosing one or more categories, display the latest published content of the relevant category.', 'laura' ), 'section' => 'laura_home_featured_content', 'input_attrs' => array( 'multiselect' => true, ), 'choices' => array( $output_categories ) ) ));