如何从类别名称中获取类别对象?我似乎找不到能够做到这一点的功能。如果类别名称是"我的类别"。我试过跑:
working code:
var items;
$( document ).ready(function() {
$("#header").load("Header.html");
$("#footer").load("Footer.html");
var flickerAPI = "GetAuthorities.do";
$.getJSON( flickerAPI, {
format: "json"
})
.done(function( data ) {
items=data[0];
$("#overSightAuth").autocomplete({
source:items,
label:items.id,
value:items.value
})
});
});
但它只返回0.
答案 0 :(得分:2)
您可以使用get_term_by
功能。
$category = get_term_by('name', 'my category', 'category')
参考:https://codex.wordpress.org/Function_Reference/get_term_by