在“选项”面板中显示标签,帖子,自定义分类法下拉列表

时间:2015-02-21 11:30:29

标签: wordpress wordpress-plugin wordpress-theming

我一直在使用WordPress设置API为插件创建选项页面。一切都很好,除了显示WordPress标签,帖子和自定义分类(如果存在)的选择下拉列表和复选框列表。

对于类别,我正在使用wp_dropdown_categories()。标签,CPT和自定义分类法是否有类似的功能?如果没有,它怎么可行?

1 个答案:

答案 0 :(得分:0)

对于自定义帖子类型,您可以使用WP_Query方法 像这样:

$args = array(
    'post_type'  => 'your_custom_post_type',
    'meta_query' => array(
        'relation' => 'OR',
        array(
            'key'     => 'your_custom_key',
            'value'   => 'your_custom_value',
        )
    ),
);
$query = new WP_Query( $args );

有关更多信息,请访问以下链接:

http://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters