<?php add_filter( 'woocommerce_product_query_meta_query', 'show_only_products_with_specific_metakey', 10, 2 ); function show_only_products_with_specific_metakey( $meta_query, $query ) { // Only on shop pages if( ! is_shop() ) return $meta_query; $meta_query[] = array( 'key' => '_allowed_user', 'value' => get_current_user_id(), ); return $meta_query; }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter