Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. add_action( 'do_meta_boxes', 'feature_image_box' );
  2. function feature_image_box( $post_type ) {
  3. global $wp_meta_boxes;
  4. if ( ! current_theme_supports( 'post-thumbnails', $post_type ) || ! post_type_supports( $post_type, 'thumbnail' ) ){
  5. return;
  6. } else {
  7. foreach ( $wp_meta_boxes[ $post_type ] as $context => $priorities ){
  8. foreach ( $priorities as $priority => $meta_boxes ){
  9. foreach ( $meta_boxes as $id => $box ){
  10. if ( 'postimagediv' == $id ){
  11. $wp_meta_boxes[ $post_type ][ $context ][ $priority ][ $id ]['title'] .= ' 1920w x 700h';
  12. }
  13. remove_action( 'do_meta_boxes', 'feature_image_box' );
  14. }
  15. }
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement