以下拉列表的方式显示WordPress所有文章类型,包括自定义文章类型。
<?php
$args = array(
'public' => true,
);
$post_types = get_post_types( $args, 'objects' );
?>
<select class="widefat" name="post_type">
<?php foreach ( $post_types as $post_type_obj ):
$labels = get_post_type_labels( $post_type_obj );
?>
<option value="<?php echo esc_attr( $post_type_obj->name ); ?>"><?php echo esc_html( $labels->name ); ?></option>
<?php endforeach; ?>
</select>
© 版权声明
版权声明
1
本站名称:糖果博客
2
本站网址:wpocn.com
3
本网站的内容来源于网络,仅供大家学习与参考,如有侵权,请联系站长进行删除处理。
4
本站一切资源不代表本站立场,并不代表本站赞同其观点和对其真实性负责。
5
本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报。
6
本站附件资源、教程等内容如因时效原因失效或不可用,请评论区留言或联系站长及时更新。
THE END














暂无评论内容