Answers for "get_taxonomy slug"

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
0

taxonomy-{taxonomy-slug}.php

taxonomy-{taxonomy}-{slug}.php
taxonomy-{taxonomy}.php
taxonomy.php
archive.php
index.php
Posted by: Guest on December-21-2021

Browse Popular Code Answers by Language