The exclude tag has no wiki summary.
3
votes
1answer
557 views
Exclude Specific Term from Search
It is possible to search for posts with a specific term by appending the URL with:
?&term=abc
Is it possible to do the opposite and search excluding a specific term? Something like:
...
1
vote
2answers
711 views
Exclude Category From Home Page, Display Posts on It's Own Page?
I created a new category with the ID of 57, how do I exclude this category from the homepage/blog and then list the posts from this category on its own page?
this is what my index.php looks like
...
2
votes
1answer
111 views
Exclude post_type from admin comments_list
I'm trying not to show comments from a certain custom post type int the comments list on the admin interface.
I went to the "wp-admin/includes/class-wp-comments-list-table.php" and tried to play with ...
2
votes
2answers
2k views
Dynamically exclude menu items from wp_nav_menu
I tried looking for info about how to exclude/remove nav menu items from custom menus, and the only thread I found did not have any answers that were useful to me.
1. Background:
I put together a ...
0
votes
3answers
2k views
Exclude the category from the Wordpress loop
Question
Hi everyone, I have this code for the loop, and I need to exclude a category 4 from this loop. Please help :)
Code that starts the loop
<?php if(have_posts()): ?>
...
0
votes
1answer
237 views
Alter secondary loop to exclude posts from current page category
The below code is taken from sidebar.php where it outputs random posts from multiple categories and excludes the current post from showing up. This works great but how do I alter this loop to exclude ...