Guest User

Untitled

a guest
Nov 27th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. if ( !is_user_logged_in()) {
  2. function exclude_product_from_users($q){
  3. $current_user = wp_get_current_user();
  4. $prodcuts_ids = array(648);
  5. $q->set( 'post__not_in', $prodcuts_ids );
  6. }
  7. add_action( 'woocommerce_product_query', 'exclude_product_from_users' );
  8. }
Add Comment
Please, Sign In to add comment