Untitled
unknown
plain_text
2 years ago
280 B
6
Indexable
<?php
add_filter( 'nrr_get_review_items', function( $items ) {
foreach( $items as $key => $item ) {
if( in_array( $item['id'], [ 1000, 2000 ] ) ) {
unset( $items[ $key ] );
}
}
return $items;
}, 10, 1 );Editor is loading...
Leave a Comment