Exclude Posts from "Recent Posts" Section
-
I am trying to exclude certain posts from a “recent posts” section loaded on my homepage. I would like to exclude them by tag, but by ID or category would be alright as well (in that order of preference). I assume this is the code I should be editing:
<?php $limit = get_option('posts_per_page'); $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('showposts=' . $limit . '&paged=' . $paged); $wp_query->is_archive = true; $wp_query->is_home = false; ?>
but cannot figure out what to change. Link to site: https://harvardelp.wpengine.com/welcome/ where I’m hoping to filter out the posts beneath the slider (specifically, to exclude anything included in the slider). Any help would be appreciated, thanks.
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘Exclude Posts from "Recent Posts" Section’ is closed to new replies.