Wordpress数字分页没有单词

时间:2017-07-04 13:31:55

标签: php wordpress pagination

我工作的Wordpress网站需要对帖子页面进行数字分页,但由于它是一个多语言网站,我不能在其中包含任何文字,例如"上一页"或"第1页,共3页"。

我已经尝试了几个我已经找到的不同的例子(因为我自己还没有足够的技巧来编写它),但它们都包含隐藏在查询中的单词,我可以&# 39;弄清楚如何改变它们。例如:

function pagination($pages = '', $range = 4)
{  
     $showitems = ($range * 2)+1;  

     global $paged;
     if(empty($paged)) $paged = 1;

     if($pages == '')
     {
         global $wp_query;
         $pages = $wp_query->max_num_pages;
         if(!$pages)
         {
             $pages = 1;
         }
     }   

     if(1 != $pages)
     {
         echo "<div class=\"pagination\"><span>Page ".$paged." of ".$pages."</span>";
         if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."'>&laquo; First</a>";
         if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>&lsaquo; Previous</a>";

         for ($i=1; $i <= $pages; $i++)
         {
             if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems ))
             {
                 echo ($paged == $i)? "<span class=\"current\">".$i."</span>":"<a href='".get_pagenum_link($i)."' class=\"inactive\">".$i."</a>";
             }
         }

         if ($paged < $pages && $showitems < $pages) echo "<a href=\"".get_pagenum_link($paged + 1)."\">Next &rsaquo;</a>";  
         if ($paged < $pages-1 &&  $paged+$range-1 < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($pages)."'>Last &raquo;</a>";
         echo "</div>\n";
     }
}

此代码显示&#34; Page 1 of 2&#34;。如果我可以将其改为1/2,例如,这将是完美的。是否有人能够解释我如何做到这一点,或任何替代方法?非常感谢!

3 个答案:

答案 0 :(得分:0)

查看以下Wordpress数字分页自定义代码的代码:

<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
if ($paged == "1") {
    $args = array(
        'post_type' => 'uk-blog',
        'post_status' => 'publish',
        'offset' => 0,
        'posts_per_page' => 10
    );
} else {
    $offset = $paged * 5;
    $offset = $offset - 5;
    $args = array(
        'post_type' => 'uk-blog',
        'post_status' => 'publish',
        'offset' => $offset
    );
}

$loop = new WP_Query($args);
if ($loop->have_posts()) :
while ($loop->have_posts()) : $loop->the_post();
    /*Your Code */

endwhile;
?>
<div class="pagination-grp">
    <?php
    $big = 999999999; // need an unlikely integer
    //$i=1;

    echo paginate_links(array(
        'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))),
        'format' => '?paged=%#%',
        'current' => max(1, get_query_var('paged')),
        'prev_text' => __('<'),
        'next_text' => __('>'),
        'total' => $loop->max_num_pages

    ));
    wp_reset_postdata();
    endif;
    ?>
</div>

答案 1 :(得分:0)

请找到代码:

    function theme_pagination()
    {
        echo paginate_links( array(
           'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
           'format' => '?paged=%#%',
           'type'=>'list',
           'current' => max( 1, get_query_var('paged') ),
           'total' => $wp_query->max_num_pages,
           'prev_text'    => '',
           'next_text'    => '',
        ));

    }

希望这可以完成工作

答案 2 :(得分:0)

最后,我只是将那些说过的文字分开了,并且#34; Page 1 of 2&#34;并赋予它display:none;风格。不是真正的解决方案,但它适用于这个项目。