Worpress PAGE Excluder plugin needed

by 2 replies
3
Hi,
I am running a guest blog (techmoo.com) in WordPress and gets many guest posts from contributors, as you know there are two types of content thy contribute
1. Unique (only)
2. Unique but informative and Rich Content
Now here i want to exclude the posts from first page that are only "Unique" and wants only to include to "Rich Content" that have some value to readers,
Please suggest me any plugin or any other tips to do that, cause i don't want that more garbage stuff on my home page.

Thanks
#programming #excluder #needed #page #plugin #worpress
  • Try adding this code to your themes index.php file. This should go just above where it starts to loop through all the posts.

    Code:
    if(is_front_page()) {
    query_posts(  . '&cat=1' );
    }
    Replace "1" with the category id you have assigned for the "Rich Content".
    • [1] reply

Next Topics on Trending Feed