Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Make posts status publish after submit, Frontend Submit */
- function jnews_frontendsubmit_status_posts( $args ) {
- $args['post_status'] = 'publish';
- return $args;
- }
- add_filter( 'jnews_frontend_submit_create_post', 'jnews_frontendsubmit_status_posts' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement