Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Ok here is my page.php file

    <?php
    $parentPage_title = get_the_title($post->post_parent);
    $currentPage_title = get_the_title($post->post_nicename);
    get_header();?>

    <div id=”floatswrap” class=”smallftfl clearfix”>

    <div class=”container clearfix”>

    <h2 class=”page-title”><?php if ($parentPage_title == $currentPage_title) { echo $currentPage_title;} else { echo $parentPage_title;?> » <?php echo $currentPage_title; }?></h2>

    <div id=”main_col”>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div <?php post_class(‘page_post’);?> id=”post-<?php the_ID(); ?>”>
    <?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’);
    wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
    </div><!– page_post –>
    <?php endwhile; endif; ?>

    </div><!– main_col –>

    <?php get_sidebar(); ?>

    </div><!– container –>
    </div><!– floatswrap–>
    <?php get_footer(); ?>

    And here is my index.php file

    <?php get_header();?>
    <div id=”floatswrap” class=”smallftfl clearfix”>
    <div class=”container clearfix”>

    <div id=”featuredArea” class=”clearfix”>
    <?php include (TEMPLATEPATH . ‘/featuredArea/featuredStickyPosts.php’); ?>
    </div>

    <?php if ( is_sidebar_active(‘frontpage_seperator_widget_area’) ) : dynamic_sidebar(‘frontpage_seperator_widget_area’); endif; ?>

    <div id=”main_col”>

    <?php include (TEMPLATEPATH . ‘/posts/indexPostColumns.php’); ?>
    <?php wp_pagenavi(); ?>
    </div><!– main_col –>

    <?php get_sidebar(); ?>

    </div><!– container –>
    </div><!– floatswrap–>
    <?php get_footer(); ?>

    HELP!

    I’m using the theme SmashingMultiMedia with the WP-PageNavi plugin and i’m not able to see my older posts. I click the link and all I see is the same posts over and over again. Somebody please help!

    https://useen.gptfever.info

    HELP!

    I’m using the theme SmashingMultiMedia and I’m also using the WP-PageNavi plugin to try and display my older posts. When I click on Older Posts it only shows the same posts over and over again. How can I fix this problem? I’ve looked high and low for solving this problem and I can’t seem to find it. Please help!

    https://useen.gptfever.info

Viewing 3 replies - 1 through 3 (of 3 total)