Exclude Post ID from Array Specified in Custom Field
Your question is pretty vague and you haven’t given any example code, but the following may work for you: <?php global $post; // Arguments $args = array(‘ /* Enter your arguments in here… */ ‘); // The query $the_query = new WP_Query( $args ); // The loop if ( $the_query->have_posts() ) { // Exclude ID … Read more