[教程] 以下拉列表显示WordPress所有文章类型

查看: 442|回复: 0
wpocn 发表于 2023-3-2 09:58:40
以下拉列表的方式显示WordPress所有文章类型,包括自定义文章类型。


  1. <?php
  2.         $args = array(
  3.                 'public' => true,
  4.         );
  5.         $post_types = get_post_types( $args, 'objects' );
  6. ?>

  7. <select class="widefat" name="post_type">
  8.         <?php foreach ( $post_types as $post_type_obj ):
  9.                 $labels = get_post_type_labels( $post_type_obj );
  10.         ?>
  11.         <option value="<?php echo esc_attr( $post_type_obj->name ); ?>"><?php echo esc_html( $labels->name ); ?></option>
  12.         <?php endforeach; ?>
  13. </select>
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关于本站联系我们FAQ友情链接免责声明生存法则

Build with for "make" Copyright © 2020-2022. Powered by Discuz! GMT+8, 2024-5-19 05:38

快速回复 返回顶部 返回列表