Skip to content

Instantly share code, notes, and snippets.

View tagmetag's full-sized avatar
💭
Please contact me if you want to contribute: congtoan7@gmail.com

TagMeTag tagmetag

💭
Please contact me if you want to contribute: congtoan7@gmail.com
  • In Prison
View GitHub Profile
@tagmetag
tagmetag / media-slug.php
Created November 28, 2016 14:19
Create field to edit slug on Attachment Page WordPress
function wpse_12405_edit_attachment_name( $fields, $post ) {
$fields['post_name'] = array(
'label' => __( 'Slug' ),
'value' => $post->post_name,
);
return $fields;
}
add_filter( 'attachment_fields_to_edit', 'wpse_12405_edit_attachment_name', 10, 2 );