Advertisement
TourKick

add WxH dimensions to WP Retina 2x plugin's column

Jul 22nd, 2012
534
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. function addtoretinacolumn_wh_value( $column_name, $id ) {
  2. $meta = wp_get_attachment_metadata($id);
  3. if(isset($meta['width']) && $column_name == 'Retina')
  4. echo $meta['width'].' x '.$meta['height'];
  5. }
  6. add_action( 'manage_media_custom_column', 'addtoretinacolumn_wh_value', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement