Как правильно вписать строку, при использовании Page Navigation

Подскажите пожалуйста как верно вписать (в нижнюю часть страницы)

<?php paged_menu(); ?>

В index.php моей Темы:

<?php get_header(); ?>
            <div id="outer-column-container">
                <div id="inner-column-container">
                    <div id="source-order-container">
                        <div id="middle-column">
                            <div class="inside">
    <?php if (have_posts()) : ?>
        <?php while (have_posts()) : the_post(); ?>
            <div class="post" id="post-<?php the_ID(); ?>">
                <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php if (function_exists('the_title_attribute')) {the_title_attribute();} elseif (function_exists('the_title')) {the_title();} ?>"><?php the_title(); ?></a></h2>
                <div class="entry">
                    <?php the_content('More &raquo;'); ?>
                </div>
                <p class="postmetadata"><?php if ( function_exists('the_tags') ) {the_tags('Tags: ', ', ', '<br />');} ?> Posted <?php the_time('F jS, Y') ?> in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
            </div>
        <?php endwhile; ?>
    <?php else : ?>
        <h2 class="center">Not Found</h2>
        <p class="center">Sorry, but you are looking for something that isn't here.</p>
        <?php include (TEMPLATEPATH . "/searchform.php"); ?>
    <?php endif; ?>
                            </div>
                        </div>
                        <div id="left-column">
                            <div class="inside">
<?php get_sidebar(); ?>
                            </div>
                        </div>
                        <div class="clear-columns"><!-- do not delete --></div>
                    </div>
                    <div id="right-column">
                        <div class="inside">
<?php include ('sidebar2.php'); ?>
                        </div>
                    </div>
                    <div class="clear-columns"><!-- do not delete --></div>
                </div>
            </div>
<?php get_footer(); ?>

Ну пожалуйста….. =(

Anonymous
Отправить
Ответ на: