Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if( ! function_exists( 'videotube_filter_submit_data_args' ) ){
- /**
- * Filter submit post args
- */
- function videotube_filter_submit_data_args( $post_args, $data ){
- if( isset( $data['post_id'] ) && get_post_type( $data['post_id'] ) == 'video' ){
- $post_args['post_status'] = get_post_status( $data['post_id'] );
- }
- return $post_args;
- }
- add_filter( 'mars_submit_data_args', 'videotube_filter_submit_data_args', 999, 2 );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement