Advertisement
phpface

Untitled

Feb 4th, 2023 (edited)
1,039
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. add_filter( 'streamtube/core/post/update/errors', function( $errors ){
  2.  
  3.     if( ! array_key_exists( 'categories', $_POST['tax_input'] ) ){
  4.         $errors->add(
  5.             'no_category',
  6.             esc_html__( 'Category is required', 'streamtube-child' )
  7.         );
  8.     }
  9.  
  10.     return $errors;
  11.  
  12. }, 10, 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement