Advertisement
phpface

Untitled

Mar 26th, 2019
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. if( ! function_exists( 'videotube_filter_submit_data_args' ) ){
  2.     /**
  3.      * Filter submit post args
  4.      */
  5.     function videotube_filter_submit_data_args(  $post_args, $data ){
  6.         if( isset( $data['post_id'] ) && get_post_type( $data['post_id'] ) == 'video' ){
  7.             $post_args['post_status'] = get_post_status( $data['post_id'] );
  8.         }
  9.  
  10.         return $post_args;
  11.     }
  12.     add_filter( 'mars_submit_data_args', 'videotube_filter_submit_data_args', 999, 2 );
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement