我想在自定义帖子类型中列出自定义元框的所有值。
下面是在一篇文章中获得一个元框的代码
<?php echo get_post_meta($post->ID, \'institution_location\', true);?>
但是如果我想列出主页中的所有元框或搜索表单中的下拉菜单,而不仅仅是在单个页面中
metabox代码
add_meta_box(
\'Location_metabox\',
__( \'Location \', \'twentyeleven\' ),
\'institution_location_metabox_output\',
\'institution\',
\'side\'
);
最合适的回答,由SO网友:Ahmad Ajmi 整理而成
我尝试使用WP\\u查询,效果很好。
<?php
$args = array(\'post_type\' => \'institution\');
$the_query = new WP_Query($args);
while ( $the_query->have_posts() ) : $the_query->next_post();
$id= $the_query->post->ID;
$location = get_post_meta($id, \'institution_location\', true);
echo $location;
endwhile;
?>