Skip to content

Instantly share code, notes, and snippets.

@woogist
Created June 11, 2015 14:34
Show Gist options
  • Save woogist/fa8137c5c241a73ec69e to your computer and use it in GitHub Desktop.
Save woogist/fa8137c5c241a73ec69e to your computer and use it in GitHub Desktop.
add_filter( 'wcopc_products_query_args', 'wc_opc_custom_query_args' );
function wc_opc_custom_query_args( $args ) {
if ( isset( $args['meta_query'][0]['value'] ) ) {
array_push( $args['meta_query'][0]['value'], 'hidden' );
}
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment