web-dev-qa-db-ja.com

Query_postsでページごとの投稿を設定する

ここに私と一緒に負担します。

管理領域の1ページあたりのデフォルト投稿数は10です。テスト中に、カスタム投稿アーカイブの1ページあたりの投稿数を2に変更したい(WP 3.1)。

問題は、投稿が4つしかないため、それぞれに2つの投稿があるページが2つあるはずですが、デフォルトは10なので、/ page/2に移動するとerror-404が返されます。 2ページ目にはなりません)

これを回避する唯一の方法は管理領域のデフォルトを1に設定することでした、しかし私は今ページごとの投稿を設定するためにすべての投稿タイプのアーカイブに対してカスタムquery_postをしなければならないのでそれは本当に理想的ではありません。

誰かがこれを行うためのより良い方法、または何かアイデアがありますか?ありがとう。

archive-project.php:

<?php get_header(); ?>

    <?php
        global $wp_query;
        query_posts(array_merge($wp_query->query, array(
            'paged'          => get_query_var('paged'),
            'posts_per_page' => 2
        )));
    ?>

    <h1 class="title"><?php _e('Previous work', 'fullycharged'); ?></h1>

    <?php if (have_posts()): while(have_posts()): the_post();?>
        <a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>" <?php post_class('launch col col-' . $i); ?>>
            <span class="project-title"><?php the_title(); ?></span>
            <?php the_content(); ?>
        </a>
    <?php endwhile; endif; ?>

    <?php if ($wp_query->max_num_pages > 1): ?>
        <div id="nav-below" class="navigation">
            <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
            <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
        </div>
    <?php endif; ?>

<?php get_footer(); ?>

投稿の種類を登録します。

register_post_type('project', array(
    'capability_type' => 'post',
    'has_archive' => true,
    'hierarchical' => false,
    'labels' => array(
        'name' => __('Projects', 'fullycharged'),
        'singular_name' => __('Project', 'fullycharged'),
        'all_items' => __('All Projects', 'fullycharged'),
        'add_new_item' => __('Add New Project', 'fullycharged'),
        'edit_item' => __('Edit Project', 'fullycharged'),
        'update_item' => __('Update Project', 'fullycharged')
    ),
    'menu_icon' => get_stylesheet_directory_uri() . '/images/monitor-off.png',
    'menu_position' => 5,
    'public' => true,
    'publicly_queryable' => true,
    'exclude_from_search' => false,
    'rewrite'  => array('slug' => 'work', 'with_front' => false),
    'supports' => array('title', 'editor', 'thumbnail', 'custom-fields')
));
1
Andrew Lawson

Wordpress.orgサポートフォーラムでこの問題について議論があります。その議論のOPは答えを思い付きましたが、それをまだ投稿していません。

http://wordpress.org/support/topic/error-404-on-pagination-when-changing-posts_per_page-on-query_posts

とにかくあなたの助けをありがとう。

1
Andrew Lawson

これが私が通常pre_get_postsアクションを使用して、分類法またはカテゴリページの単一のクエリ値を変更するものです。

/**
 * Control the number of search results
 */
function custom_posts_per_page( $query ) {
    if ( $query->is_tax('mytaxonomy') || $query->is_category('mycategory') ) {
        set_query_var('posts_per_page', 9);
    }
}
add_action( 'pre_get_posts', 'custom_posts_per_page' );
2
Kevin Leary