Untitled

 avatar
unknown
plain_text
a year ago
280 B
2
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 );
Leave a Comment