Skip to content

Instantly share code, notes, and snippets.

@liranop
liranop / modify taxomony slug
Created October 6, 2022 17:00
change taxonomy url to domain/base_url/parent-term/child-term
function modify_taxonomy() {
// get the arguments of the already-registered taxonomy
$taxonomy = 'taxonomy_name';
$cpt_type = array( 'post' , 'gallery');
$base_url = 'blog';
$category_args = get_taxonomy( $taxonomy ); // returns an object
$category_args->show_admin_column = true;
$category_args->query_var = true;