Get your own customer support community

Recent activity

Subscribe to this feed
  • question

    DMP replied on April 02, 2009 03:39 to the question "ChaoticSoul Theme Page Number Challenge" in Revyver:

    DMP
    Here is the Main Page Index code that should fix the post:

    <?php get_header(); ?>



    <?php if (have_posts()) : ?>

    <!-- First Post -->
    <?php if (is_home()) {
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    query_posts("cat=-3&paged=$paged");
    }
    ?>
    <?php $top_query = new WP_Query('showposts=1'); ?>

    <?php while(have_posts()) : the_post(); ?>

    <!-- Next few posts -->


    <h2><?php the_title(); ?></h2>



    <?php the_content(); ?>



    <?php endwhile; ?>

    <?php else : ?>

    <h2 class="center">Not Found</h2>
    Sorry, but you are looking for something that isn't here.

    <?php include (TEMPLATEPATH . "/searchform.php"); ?>

    <?php endif; ?>

    <?php if(function_exists('wp_page_numbers')) { wp_page_numbers(); } ?>



    <?php get_sidebar(); ?>

    <?php get_footer(); ?>
  • question

    DMP asked a question in Revyver on August 28, 2008 19:09:

    DMP
    ChaoticSoul Theme Page Number Challenge
    I am using the ChaoticSoul theme for WP and I LOVE IT...thank you Bryan. I only have had one challenge that I can not solve. I added a plugin for page numbers at the bottom of the index page and it would appear that the most recent post populates at the top of the second page just like the first. Older posts then follow on page 2 as expected.

    Can you help me with the code that needs to be changed to fix this? The site address is www.donmamonephotography.com/blog. Thank you!

    D-