Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'jnews_frontend_submit_create_post', 'jnews_frontend_post_status_change' );
- add_filter( 'jnews_frontend_submit_upload_video', 'jnews_frontend_post_status_change' );
- function jnews_frontend_post_status_change( $args ) {
- $args['post_status'] = 'publish';
- return $args;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement