按名称获取类别id
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按名称获取类别id相关的知识,希望对你有一定的参考价值。
How to get a category id from the name of the category
function get_category_id($cat_name){ $term = get_term_by('name', $cat_name, 'category'); return $term->term_id; }
以上是关于按名称获取类别id的主要内容,如果未能解决你的问题,请参考以下文章