post_excerpt_meta_box

函数
post_excerpt_meta_box ( $post )
参数
  • (WP_Post) $post Current post object.
    Required:
定义位置
相关方法
post_comment_meta_boxpost_format_meta_boxpost_custom_meta_boxpost_tags_meta_boxpost_author_meta_box
引入
2.6.0
弃用
-

post_excerpt_meta_box: 此函数用于在文章编辑界面显示摘录元框,允许用户添加或删除文章的摘录。

显示文章摘录表单字段。

function post_excerpt_meta_box( $post ) {
	?>
<label class="screen-reader-text" for="excerpt"><?php _e( 'Excerpt' ); ?></label><textarea rows="1" cols="40" name="excerpt" id="excerpt"><?php echo $post->post_excerpt; // textarea_escaped ?></textarea>
<p>
	<?php
	printf(
		/* translators: %s: Documentation URL. */
		__( 'Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="%s">Learn more about manual excerpts</a>.' ),
		__( 'https://wordpress.org/support/article/excerpt/' )
	);
	?>
</p>
	<?php
}

常见问题

FAQs
查看更多 >