• Thank you for this plugin JJJ!

    Is there a way to display the UI selectively?

    I was able to disable the UI globally with the code below, but not selectively.
    The $args parameter doesn’t contain any taxonomy information, like its name or its ID.

    
    function wp_term_images_filters_ui( array $args ) {
    	$args['show_ui'] = false;
    
    	return $args;
    }
    add_filter( 'wp_term_image_get_taxonomies', 'wp_term_images_filters_ui', 10, 1 );
    

    Thanks for your help.

  • The topic ‘How to add UI to selected terms’ is closed to new replies.