Advertisement
phpface

Untitled

Nov 30th, 2017
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. if( ! function_exists( 'set_video_cpt_capability_type' ) ){
  2.     /**
  3.      * @param array $args
  4.      * @return array
  5.      */
  6.     function set_video_cpt_capability_type( $args ) {
  7.         $args['capability_type'] = 'video';
  8.         return $args;
  9.     }
  10.     add_filter( 'mars_video_post_type_args' , 'set_video_cpt_capability_type', 100, 1 );
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement