wpseek.com
A WordPress-centric search engine for devs and theme authors
post_slug_meta_box › WordPress Function
Since2.6.0
Deprecatedn/a
› post_slug_meta_box ( $post )
| Parameters: |
|
| Defined at: |
|
| Codex: |
Displays slug form fields.
Related Functions: post_submit_meta_box, post_tags_meta_box, post_custom_meta_box, post_author_meta_box, post_format_meta_box
Source
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
/* translators: Hidden accessibility text. */
_e( 'Slug' );
?>
</label><input name="post_name" type="text" class="large-text" id="post_name" value="<?php echo esc_attr( $editable_slug ); ?>" />
<?php
}