Advertisement
wpexplorer

Untitled

Nov 11th, 2011
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. // meta box ==> Portfolio Options
  2. $webagency_meta_boxes[] = array(
  3. 'id' => 'portfolio_meta_video',
  4. 'title' => 'Video Options',
  5. 'pages' => array('portfolio'),
  6. 'context' => 'normal',
  7. 'priority' => 'high',
  8. 'fields' => array(
  9. array(
  10. 'name' => 'Portfolio description',
  11. 'desc' => 'Enter your mini description for this portfolio project',
  12. 'id' => $prefix . 'portfolio_description',
  13. 'type' => 'textarea',
  14. 'std' => ''
  15. ),
  16. array(
  17. 'name' => 'Embedded Video Option',
  18. 'desc' => 'Enter your embedd code if you wish to show a video INSTEAD of the image gallery. Max width of 530px',
  19. 'id' => $prefix . 'portfolio_video_embed',
  20. 'type' => 'textarea',
  21. 'std' => ''
  22. ),
  23. )
  24. );
  25.  
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement