Advertisement
wclovers

Untitled

Feb 22nd, 2022
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. add_filter( 'wcfm_sell_items_catalog_args', function( $args ) {
  2.     if( isset( $args['author__not_in'] ) ) {
  3.         $vendors = wp_list_pluck( get_users(
  4.             array( 'role__in' => array( 'wcfm_vendor' ) )
  5.         ), 'ID' );
  6.  
  7.         if( !empty( $vendors ) ) $args['author__not_in'] = $vendors;
  8.     }
  9.     return $args;
  10. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement