Advertisement
Guest User

Untitled

a guest
Jul 18th, 2011
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. if (class_exists('MultiPostThumbnails')) {
  2.             new MultiPostThumbnails(array(
  3.             'label' => 'Secondary Image',
  4.             'id' => 'second-image',
  5.             'post_type' => 'project'
  6.             ));
  7.                
  8.             new MultiPostThumbnails(array(
  9.             'label' => 'Tertiary Image',
  10.             'id' => 'third-image',
  11.             'post_type' => 'project'           
  12.             ));
  13. }  
  14. add_image_size('project-second-image-thumbnail', 100, 100);
  15. add_image_size('project-third-image-thumbnail', 100, 100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement