post_slug_meta_box

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

post_slug_meta_box是一个WordPress的函数,用于生成编辑文章lug的meta框。它接受两个参数:$post(文章对象)和$box(元框阵列)。

显示lug表单字段。

function post_slug_meta_box( $post ) {
	/** This filter is documented in wp-admin/edit-tag-form.php */
	$editable_slug = apply_filters( 'editable_slug', $post->post_name, $post );
	?>
<label class="screen-reader-text" for="post_name"><?php _e( 'Slug' ); ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo esc_attr( $editable_slug ); ?>" />
	<?php
}

常见问题

FAQs
查看更多 >