获取两个wp_link_ages输出

时间:2011-08-22 作者:Muazam

http://i.stack.imgur.com/Yr35p.jpg

如上图所示。每个页面有两个链接。我正在使用<div class="pagelink"><?php wp_link_pages(\'pagelink=Source %\'); ?></div>对于顶部和底部,由于<!--nextpage-->

那么如何删除底部的链接呢。如果我删除<!--nextpage--> 顶部的也将消失。

谢谢

编辑:我的单曲。php

<?php get_header(); ?>

    <div id="content_box">

        <div id="left_box">

            <div id="content">

                <div id="content_inner">
<?php 
                if (have_posts()) : 
                    while (have_posts()) : the_post(); ?>

                    <h1><?php the_title(); ?></h1>
                    <p class="post_author"><em>by</em> <?php the_author(); ?></p>
<div class="pagelink"><?php wp_link_pages(\'pagelink=Source %\'); ?></div>
                    <div class="format_text">
<?php the_content(\'<p>Read the rest of this entry &raquo;</p>\'); ?>
<?php link_pages(\'<p><strong>Pages:</strong> \', \'</p>\', \'number\'); ?>
                    </div>

                </div>

                <?php comments_template(); ?>
<?php 
                    endwhile;
                else: ?>

                    <h1>Uh oh.</h1>
                    <div class="format_text">
                        <p>Sorry, no posts matched your criteria. Wanna search instead?</p>
<?php include (TEMPLATEPATH . \'/searchform.php\'); ?>
                    </div>

                </div>
<?php 
                endif; ?>

            </div>

            <?php include (TEMPLATEPATH . \'/left_bar.php\')?>

        </div>

        <?php get_sidebar(); ?>

    </div>

<?php get_footer(); ?>
我的主题是:新古典主义

1 个回复
最合适的回答,由SO网友:Mamaduka 整理而成

您的主题正在使用旧的和不推荐使用的函数link_pages 显示分页帖子的页面链接。

只需替换这段代码:

<div class="pagelink"><?php wp_link_pages(\'pagelink=Source %\'); ?></div>
                    <div class="format_text">
<?php the_content(\'<p>Read the rest of this entry &raquo;</p>\'); ?>
<?php link_pages(\'<p><strong>Pages:</strong> \', \'</p>\', \'number\'); ?>
                    </div>
使用此选项:

                    <div class="format_text">
<?php the_content(\'<p>Read the rest of this entry &raquo;</p>\'); ?>
<?php wp_link_pages( array( \'before\' => \'<div class="page-link">Pages:\', \'after\' => \'</div>\', \'pagelink\' => \'Source %\' ) ); ?>
                    </div>

结束

相关推荐

如何使用WPEC 3.8回显loop-page.php上的标记描述

我正在尝试在标记的页面上显示“标记描述”。我在循环页面中添加了一个if语句。php已经无法在显示标记页面时仅显示自定义文本。。。<?php } elseif ( is_tax ( \'product_tag\' ) ){ ?><h1 class=\"entry-title\"><?php the_title(); ?> print out this text on page</h1> 。。。但我不知道输出标记描述的代码。有人知道显示标签描述的代码吗