以下拉列表显示WordPress所有文章类型

WPOCN WordPress教程评论9阅读模式

以下拉列表的方式显示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>

文章末尾固定信息

weinxin
我的微信
我的微信
微信扫一扫
 
WPOCN
  • 本文由 WPOCN 发表于 2022年11月17日11:13:50
  • 转载请务必保留本文链接:https://www.tghello.com/4293.html

发表评论