My WordPress taxonomy should be required

I have created a custom taxonomy and it works great, but i can’t find a way to make it required in the dashboard.. Is there any way ?

This is the code of the taxonomy :

Read More
  function create_extra_cat_guidlines() {
       register_taxonomy(
      'cat',
      'pr_guidelines',
       array(
        'label' => __( 'Category' ),
        'rewrite' => array( 'slug' => 'cat' ),
        'hierarchical' => true
      )
      );
  }

Thanks in advance !

Related posts

Leave a Reply

1 comment