Categories
Archives
Tag Archives: term
Get Custom Taxonomy Terms Using WordPress Archive Template
This tutorial will get the custom taxonomy ID by using get_query_var and get_term_by in archive.php template. The example url is http://http://zourbuth.com/?manufacturers=motorola. Put this code in your theme archive.php: $taxonomy = ‘manufacturers’; $cat_name = get_query_var( $taxonomy ); $term = get_term_by(‘name’, $cat_name, …Read more.