Results 1 to 3 of 3
-
23rd Jul 2010, 07:34 PM #1OPBanned
[Tutorial] - How to Keep your WP Blog Homepage Clean!
[Tutorial] - How to Keep your WP Blog Homepage Clean!
Im using this method in my blog WRZBlog.net to post XXX Uploads and still have a clean homepage. (ie:without XXX Posts)
These two lines of code basically use the WordPress query_posts() function to exclude posts in a certain category. The first line of code fixes the pagination issue of all posts being displayed on all pages. Again, let’s say that we want to exclude all posts from the category with an ID of 8 from our index page.
Simply place the following code in your index.php file before this line
Code:<?php if (have_posts()) : while (have_posts()) : the_post(); ?>....
Code:<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=-8&paged=$paged"); ?>
This method will remove posts that are ONLY in the excluded category. If a post is in the excluded category as well as another category they will still show up on the home page.xfernanx Reviewed by xfernanx on . [Tutorial] - How to Keep your WP Blog Homepage Clean! - How to Keep your WP Blog Homepage Clean! Im using this method in my blog WRZBlog.net to post XXX Uploads and still have a clean homepage. (ie:without XXX Posts) These two lines of code basically use the WordPress query_posts() function to exclude posts in a certain category. The first line of code fixes the pagination issue of all posts being displayed on all pages. Again, let’s say that we want to exclude all posts from the category with an ID of 8 from our index page. Simply place Rating: 5
-
23rd Jul 2010, 07:49 PM #2Member
Thank you Will try this and report back !
-
23rd Jul 2010, 07:56 PM #3OPBanned
^ You welcome mate
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
LE with PR3 Tutorial Blog
By Rox in forum Link ExchangeReplies: 7Last Post: 26th Feb 2012, 10:54 AM -
[Tutorial] Open All Links In New Tab (Internal Or External) In Your Blog
By Villa in forum Tutorials and GuidesReplies: 0Last Post: 23rd Feb 2012, 01:29 AM -
[Tutorial] How to set up a Blog/Warez Blog [Includes SEO]
By Laz0r in forum Tutorials and GuidesReplies: 14Last Post: 7th Feb 2012, 04:58 PM -
[Tutorial] Start your own scene blog
By p2p4ever in forum Tutorials and GuidesReplies: 47Last Post: 10th Nov 2011, 12:56 PM -
[Tutorial] How to enable post via XML-RPC in your WordPress blog
By kundurocks in forum Webmaster ResourcesReplies: 2Last Post: 5th Jun 2011, 04:30 AM
themaCreator - create posts from...
Version 3.22 released. Open older version (or...