August 8, 201214 yr is their a way to set up which page a post goes to, like if i have posts going to the main page, but also want to be able to make posts to a blog And posts go to another page?
August 8, 201214 yr <?php $the_query = new WP_Query( 'showposts=3' ); ?> <?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?> <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></strong></li> <li><a href="<?php the_permalink() ?>"><?php the_time( get_option( 'date_format' ) ) ?></a></li> <li><?php the_excerpt(__('(more…)')); ?></li> <li><a href="<?php the_permalink() ?>">Read more</a></li> <?php endwhile;?> That will display your 3 latest posts, post title, post date, content and then a read more.
August 8, 201214 yr Author It's not that I'm trying to do, what I'm trying to do is, have three separate pages that I can make posts too, like post on the home page, then post different content on a blog page, and then post different content again on a totally different page
August 9, 201214 yr You could set up categories for your posts, and only display posts of a certain category on certain pages.
August 9, 201214 yr Author You could set up categories for your posts, and only display posts of a certain category on certain pages. How would this be done, and would they still show up on the main page or would it only be the one with the right category
August 13, 201213 yr How would this be done, and would they still show up on the main page or would it only be the one with the right category Basically, put this in front of your loop where CATNAME is the name of your category. You then just need to create different template pages for each category i.e. blog, news, events. <?php query_posts('category_name=CATNAME&showposts=10'); ?>
August 14, 201213 yr Take a look at a plugin I wrote. It might suit your needs. http://wordpress.org/extend/plugins/posts-for-page/
August 14, 201213 yr Author Take a look at a plugin I wrote. It might suit your needs. http://wordpress.org...posts-for-page/ this worked, thanx alot man helpped me out a lot
Create an account or sign in to comment