Answers for "get the current archive term id$"

PHP
1

get current term id

<?php $current_term = get_queried_object()->term_id; ?>
Posted by: Guest on April-02-2020
0

wordpress get current taxonomy

$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
echo $term->name; // will show the name
echo $term->slug; // will show the slug
Posted by: Guest on October-21-2020

Browse Popular Code Answers by Language