大家好!!!
我需要一些关于作者分页的帮助。php模板
除了作者之外,我的所有循环都有分页功能。php,我得到一个404错误
在我的设置/阅读中,我已将博客帖子设置为显示为1。
第一步是作者从作者改写为艺术家,
function set_new_author_base() {
global $wp_rewrite;
$author_slug = \'artist\';
$wp_rewrite->author_base = $author_slug;
}
add_action(\'init\', \'set_new_author_base\');
在作者中。php模板我在自定义帖子类型“ideas”中查询$author ID帖子:
<?php
$paged = ( get_query_var( \'paged\' ) ) ? get_query_var( \'paged\' ) : 1;
query_posts(\'post_type=ideas&author=\'.$curauth->ID.\'&posts_per_page=1&paged=\'.$paged);
if(have_posts()) : while(have_posts()) : the_post(); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endwhile;
previous_posts_link(\'newer\');
next_posts_link(\'older\');
endif;
?>
出于某种原因,我得到了404,另一方面,我可以在分类法中运行查询。php,主页。php,索引。php。。。它还具有分页功能,工作正常。
我看到了指向我的下一个和上一个链接:http://domain.dev/artist/philip/page/2/
但我得到404错误,
主页中的查询。php模板:
<?php //*The Query*//
query_posts($query_string . \'&post_type=ideas&posts_per_page=1&offset=0&paged=\'.$paged);
if(have_posts()) : while(have_posts()) : the_post();
?>
在这里,我正确地获得了下一篇和上一篇文章
http://domain.dev/ideas/page/2/索引中的查询。php模板:
<?php //*The Query*//
query_posts($query_string . \'&posts_per_page=1&offset=0&paged=\'.$paged);
if(have_posts()) : while(have_posts()) : the_post();
?>
在这里,我正确地获得了下一篇和上一篇文章
http://domain.dev/ideas/page/2/你知道这里发生了什么吗<我确信作者有一些帖子,我已经刷新了规则。。。
非常感谢!