Answers for "custom taxonomy to used get_category_by_slug function in custom taxonomy used wordpress"

PHP
0

get taxonomy term id from slug - WordPress

<?php 
    $term = get_term_by('slug', $slug, 'category'); 
    $name = $term->name; 
    $id = $term->term_id;
?>
Posted by: Guest on September-23-2021

Code answers related to "custom taxonomy to used get_category_by_slug function in custom taxonomy used wordpress"

Browse Popular Code Answers by Language