你好,我有问题。
我无法查看/博客/页面/2/我单击“\\u posts\\u link”,错误404显示我
博客页面->主页。php
<?php
$paged = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 1;
$args = array(\'posts_per_page\' => 5, \'paged\' => $currentPage);
query_posts($args);
if( have_posts() ): $i = 0;
while( have_posts() ): the_post(); ?>
<小时> <?php $i++; endwhile; ?>
<ul class="uk-pagination uk-background-primary uk-light">
<li><?php next_posts_link(\'<span class="uk-margin-small-right" uk-pagination-previous></span> Stare Posty\'); ?></li>
<li class="uk-margin-auto-left"><?php previous_posts_link(\'Nowe posty <span class="uk-margin-small-left" uk-pagination-next>\'); ?></li>
</ul>
<?php endif;
wp_reset_query();
?>