|
|
|
|
|
|
|
![]() |
#1 | |
Lord help me, I'm just not that bright
|
Quote:
I haven't really looked at any of the WP code yet so if anyone knows why this would be a BAD idea let me know. ![]() |
|
![]() |
![]() |
![]() |
#2 | |
Madness is like gravity. All it takes is a little... push.
Join Date: Feb 2006
Location: California
Posts: 1,679
|
Quote:
If you do, just make good notes. ![]()
__________________
~Warm and Fuzzy. ![]() |
|
![]() |
![]() |
![]() |
#3 |
Oh no, I'm sweating like Roger Ebert
|
It sounds like you sort of want to have two blogs a main one and a secondary. With the secondary only accessible from a link on your main page. Why not create a new blog, in a subdirectory, and only link to it from your main blog.
Or, conversly, you could add the RSS feed from the above blog to a page on your main page. Then you would want to hide the secondary blog behind a robots.txt. Or look at something like the multiply plugin, which would allow you to run the blogs from the same admin panel. Haven't checked it out but if it uses the same database, then you could use the same template and it wouldn't look like you did anything more than change pages. |
![]() |
![]() |
![]() |
#4 |
Just because I don't care doesn't mean I don't understand!
|
It's not difficult...
Assuming the ID of the category in question was 11, then you create a template for it naming it as category-11.php In that template you preface "The Loop" with: Code:
<?php query_posts('category_name=CATNAME&showposts=20'); ?> If you don't want those articles showing up on the main page, put this ahead of "The Loop" on the main template: Code:
<?php if (is_home()) { query_posts('cat=-11'); } ?> Code:
<?php wp_list_cats('exclude=11'); ?> Last edited by jayeff; 2006-11-14 at 05:32 PM.. |
![]() |
![]() |
![]() |
#5 | |
Lord help me, I'm just not that bright
|
Quote:
|
|
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | Rate This Thread |
|
|