在元框中创建自定义帖子类型的选择列表

时间:2011-01-20 作者:salocin

你会说简单吗?

我有第一个自定义的帖子类型,叫做Country。我有第二种自定义的邮件类型,称为Travelers。在编辑Countrywith Travelers的内容时,我需要提供一个下拉选择列表(多重检查)。这将允许我为每个国家选择旅行者。

帮助

线等回答

2 个回复
SO网友:Bainternet

这里的问题很简单Display list of tags as drop down menu or radio buttons in a meta box?

但您需要查询旅行者的邮件列表,而不是标签列表,邮件类型如下:

$travelers = new WP_Query();
$travelers ->query(\'post_type=travelers&postprepage=-1\');
while ($travelers->have_posts()) : 
   $recentPosts->the_post();
   $travellersnames[] = $post->title;
endwhile
并在元框中显示$travellersnames作为选择字段或多选字段的选项

SO网友:salocin

根据我的答案

$s_query = new WP_Query( array(
    \'suppress_filters\' => false,
    \'post_type\' => \'slide\'));
while($s_query->have_posts()):$s_query->the_post();

    $sname = $post->post_title;
    $s_output2 =\'\';
    $s_output2 .= \'<option value="\'.$post->ID.\'" >\';
    $s_output2 .= $post->post_title;
    $s_output2 .= \'</option>\';
    echo $s_output2;

endwhile ;
wp_reset_query();

结束

相关推荐