我正在使用https://github.com/bainternet/My-Meta-Box在我的分类“组”中创建MetaData。
如何检索这些数据?到目前为止,我有每个组ID,但我不知道如何检索MetaData。
发布于 2013-03-25 10:54:11
我就想明白了。不幸的是,https://github.com/bainternet/My-Meta-Box在数据库中使用的是WP_Options表,而不是它应该使用的元表。
下面是获取信息的方法。
<?$meta = get_option('tax_meta_'.$category->term_id)?>https://stackoverflow.com/questions/15606769
复制相似问题