Greenguy's Board


Go Back   Greenguy's Board > Blogs and Blogging
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2006-11-09, 08:04 PM   #1
NobleSavage
Lord help me, I'm just not that bright
 
Join Date: May 2006
Posts: 103
Send a message via ICQ to NobleSavage
Calling WordPress Experts

I'd like to be able to make some posts that appear on (and only on) a separate page. What would be the best way to set this up?

If the "page" acted like a category, but the posts never showed up on the index page that would work.

Any ideas?
NobleSavage is offline   Reply With Quote
Old 2006-11-09, 08:09 PM   #2
walrus
Oh no, I'm sweating like Roger Ebert
 
walrus's Avatar
 
Join Date: May 2005
Location: Los Angeles
Posts: 1,773
Send a message via ICQ to walrus Send a message via Yahoo to walrus
I'm almost afraid to answer this cause I feel I must be missing something. Aren't you talking about creating a page? In which case, from your dashboard you click on Write and the Write Page. The link to the page will now only show up on your sidebar.

Did I miss something?
__________________
Naked Girlfriend Porn TGP
free partner account
walrus is offline   Reply With Quote
Old 2006-11-09, 08:34 PM   #3
NobleSavage
Lord help me, I'm just not that bright
 
Join Date: May 2006
Posts: 103
Send a message via ICQ to NobleSavage
Quote:
Originally Posted by walrus View Post
I'm almost afraid to answer this cause I feel I must be missing something. Aren't you talking about creating a page? In which case, from your dashboard you click on Write and the Write Page. The link to the page will now only show up on your sidebar.

Did I miss something?
I want to be able to write posts that will then appear on that page and not apear on the index.

Does that make sense?
NobleSavage is offline   Reply With Quote
Old 2006-11-09, 10:20 PM   #4
walrus
Oh no, I'm sweating like Roger Ebert
 
walrus's Avatar
 
Join Date: May 2005
Location: Los Angeles
Posts: 1,773
Send a message via ICQ to walrus Send a message via Yahoo to walrus
Right, you mean something like this page. Which shows up nowhere as a part of my blog posts but is created within WP.

If so...do Write Page.
__________________
Naked Girlfriend Porn TGP
free partner account
walrus is offline   Reply With Quote
Old 2006-11-09, 10:30 PM   #5
NobleSavage
Lord help me, I'm just not that bright
 
Join Date: May 2006
Posts: 103
Send a message via ICQ to NobleSavage
Quote:
Originally Posted by walrus View Post
Right, you mean something like this page. Which shows up nowhere as a part of my blog posts but is created within WP.

If so...do Write Page.

Exactally, but I want to be able to make multiple posts at different times to the same page and have them que up on the page as they would on the index.

So it would look like a "category page": Ex: http://surfcuties.com/category/bikini-babe/

Last edited by NobleSavage; 2006-11-09 at 10:33 PM..
NobleSavage is offline   Reply With Quote
Old 2006-11-10, 01:11 AM   #6
walrus
Oh no, I'm sweating like Roger Ebert
 
walrus's Avatar
 
Join Date: May 2005
Location: Los Angeles
Posts: 1,773
Send a message via ICQ to walrus Send a message via Yahoo to walrus
Can't help then, I know of no way of doing that....or should I say I know of no plugin that would do it.
__________________
Naked Girlfriend Porn TGP
free partner account
walrus is offline   Reply With Quote
Old 2006-11-10, 09:15 AM   #7
NobleSavage
Lord help me, I'm just not that bright
 
Join Date: May 2006
Posts: 103
Send a message via ICQ to NobleSavage
Quote:
Originally Posted by walrus View Post
Can't help then, I know of no way of doing that....or should I say I know of no plugin that would do it.
I'm thinking abut making a category "site reviews" and then adding a litte php code to the post function on the index page: If category then exit...

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.
NobleSavage is offline   Reply With Quote
Old 2006-11-10, 02:11 PM   #8
virgohippy
Madness is like gravity. All it takes is a little... push.
 
virgohippy's Avatar
 
Join Date: Feb 2006
Location: California
Posts: 1,679
Quote:
Originally Posted by NobleSavage View Post
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.
Any time you do a custom job you have to remember what you did, where, and why before doing an upgrade because an upgrade will potentially wipe out that customized feature.

If you do, just make good notes.
__________________
~Warm and Fuzzy.
virgohippy is offline   Reply With Quote
Old 2006-11-10, 05:21 PM   #9
walrus
Oh no, I'm sweating like Roger Ebert
 
walrus's Avatar
 
Join Date: May 2005
Location: Los Angeles
Posts: 1,773
Send a message via ICQ to walrus Send a message via Yahoo to walrus
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.
__________________
Naked Girlfriend Porn TGP
free partner account
walrus is offline   Reply With Quote
Old 2006-11-14, 05:29 PM   #10
jayeff
Just because I don't care doesn't mean I don't understand!
 
jayeff's Avatar
 
Join Date: Sep 2006
Posts: 95
Send a message via ICQ to jayeff
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'); ?>
...replacing CATNAME with the name of the category and the showposts parameter to suit yourself.

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'); } ?>
And should you not want this category to appear in the links, use this in the sidebar:
Code:
<?php wp_list_cats('exclude=11'); ?>

Last edited by jayeff; 2006-11-14 at 05:32 PM..
jayeff is offline   Reply With Quote
Old 2006-11-14, 07:01 PM   #11
NobleSavage
Lord help me, I'm just not that bright
 
Join Date: May 2006
Posts: 103
Send a message via ICQ to NobleSavage
Quote:
Originally Posted by jayeff View Post
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'); ?>
...replacing CATNAME with the name of the category and the showposts parameter to suit yourself.

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'); } ?>
And should you not want this category to appear in the links, use this in the sidebar:
Code:
<?php wp_list_cats('exclude=11'); ?>
Perfect! Thanks for saving me the time on figuring that out.
NobleSavage is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 12:08 AM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc