Created
April 26, 2013 20:05
-
-
Save xtrasmal/5470096 to your computer and use it in GitHub Desktop.
WordPress: Re-attach images from media library
Put this in the functions.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Extra column at media library | |
| add_filter("manage_upload_columns", 'upload_columns'); | |
| add_action("manage_media_custom_column", 'media_custom_columns', 0, 2); | |
| function upload_columns($columns) { | |
| unset($columns['parent']); | |
| $columns['better_parent'] = "Parent"; | |
| return $columns; | |
| } | |
| function media_custom_columns($column_name, $id) { | |
| $post = get_post($id); | |
| if($column_name != 'better_parent') | |
| return; | |
| if ( $post->post_parent > 0 ) { | |
| if ( get_post($post->post_parent) ) { | |
| $title =_draft_or_post_title($post->post_parent); | |
| } | |
| ?> | |
| <strong><a href="<?php echo get_edit_post_link( $post->post_parent ); ?>"><?php echo $title ?></a></strong>, <?php echo get_the_time(__('Y/m/d')); ?> | |
| <br /> | |
| <a class="hide-if-no-js" onclick="findPosts.open('media[]','<?php echo $post->ID ?>');return false;" href="#the-list"><?php _e('Opnieuw koppelen aan'); ?></a> | |
| <?php | |
| } else { | |
| ?> | |
| <?php _e('(Unattached)'); ?><br /> | |
| <a class="hide-if-no-js" onclick="findPosts.open('media[]','<?php echo $post->ID ?>');return false;" href="#the-list"><?php _e('Koppelen aan'); ?></a> | |
| <?php | |
| } | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment