Untitled
Anonymous
plain_text
02/09/2024 1:49 PM
376 B
17
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