Advertisement
arie_cristianD

auto approve frontend submit post

Aug 6th, 2024
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1.  
  2. add_filter( 'jnews_frontend_submit_create_post', 'jnews_frontend_post_status_change' );
  3.  
  4. add_filter( 'jnews_frontend_submit_upload_video', 'jnews_frontend_post_status_change' );
  5.  
  6.  
  7. function jnews_frontend_post_status_change( $args ) {
  8.  
  9.     $args['post_status'] = 'publish';
  10.     return $args;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement