我正在使用https://github.com/bainternet/My-Meta-Box在我的分类“组”中创建元数据
如何检索该数据?截至目前,我有每个组 ID,但我不知道如何检索元数据。
我正在使用https://github.com/bainternet/My-Meta-Box在我的分类“组”中创建元数据
如何检索该数据?截至目前,我有每个组 ID,但我不知道如何检索元数据。
刚刚想通了。不幸的是,https://github.com/bainternet/My-Meta-Box使用数据库中的 WP_Options 表,而不是 Meta 表,就像它应该的那样。
以下是获取信息的方法。
<?$meta = get_option('tax_meta_'.$category->term_id)?>