Update taxonomy list

This commit is contained in:
Robin Cornett
2019-06-25 12:34:28 -04:00
parent b3307b8f32
commit bb4a18b320
2 changed files with 10 additions and 18 deletions
@@ -154,23 +154,6 @@ class Display_Featured_Image_Genesis_Widget_Taxonomy extends WP_Widget {
) );
}
/**
* @return array
*/
protected function get_taxonomies() {
$args = array(
'public' => true,
'show_ui' => true,
);
$taxonomies = get_taxonomies( $args, 'objects' );
$options = array();
foreach ( $taxonomies as $taxonomy ) {
$options[ $taxonomy->name ] = $taxonomy->label;
}
return $options;
}
/**
* @param $instance
* @param bool $ajax
+10 -1
View File
@@ -1,5 +1,14 @@
<?php
$args = array(
'public' => true,
'show_ui' => true,
);
$taxonomies = get_taxonomies( $args, 'objects' );
$tax_options = array();
foreach ( $taxonomies as $taxonomy ) {
$tax_options[ $taxonomy->name ] = $taxonomy->label;
}
/**
* Define term specific taxonomy fields.
*/
@@ -11,7 +20,7 @@ return array(
'label' => __( 'Taxonomy:', 'display-featured-image-genesis' ),
'flex' => true,
'onchange' => sprintf( 'term_postback(\'%s\', this.value );', esc_attr( $this->get_field_id( 'term' ) ) ),
'choices' => $this->get_taxonomies(),
'choices' => $tax_options,
),
),
array(