我已经从this example
创建了自定义字段我想通过包含" web"来获得分类法名称。在phpmyadmin的mysql查询中的custom_term_meta
(创建新字段)中。
答案 0 :(得分:0)
WordPress 4.4及更高内置了Term Meta:https://www.smashingmagazine.com/2015/12/how-to-use-term-meta-data-in-wordpress/
但是在您的示例中,您将术语元存储在wp_options表中。您应该通过get_option()函数获取值,如下所示:
echo get_option("taxonomy_$term_id");
...其中$ term_id是您想要获取元数据的术语的ID。