2024年1月20日 Recordamu

WordPress投稿の一覧表示件数を変更する方法

WordPress投稿の一覧表示件数を変更する方法

投稿の一覧表示件数の変更

1. 管理画面での変更

設定 > 表示設定 で「1ページに表示する最大投稿数」を変更し、保存します。

2. ページ種別ごとに変更

functions.phpに以下のコードを追加し、カテゴリーページのみ表示件数を変更します:

<?php
function my_preget_posts($query) {
    if (is_admin() || !$query->is_main_query()) {
        return;
    }
    if ($query->is_category()) {
        $query->set('posts_per_page', 6);
        return;
    }
}
add_action('pre_get_posts', 'my_preget_posts');

まとめ

デフォルトの10件から必要な件数に変更することで、ユーザー体験を向上させることができます。

Contact

contact

We welcome you to contact us for more information about any of our services.

お気軽にお問い合わせください。

Create a web

We can provide a wide range of services from web direction / design / coding / WP integration / numerical analysis. Please feel free to contact us for an initial consultation.

Webディレクション/デザイン/コーディング/WP構築/数値解析まで、幅広く対応いたします。お気軽にご相談ください。

Japan information

We can help you do business for Japan.
Japan has its own rules and regulations, and the Japanese are sensitive to them.
We can help you with content (translation, sales, etc.) that takes into account communication that will work in Japan.

日本向けのビジネスのお手伝いをします。日本で通用するコミュニケーションを考慮した施策(翻訳や営業など)をご提供します。

Use our services

If you would like to use this service, please contact us. We also looking for people to collaborate and extend our services. Please feel free to contact us.

サービスの利用に関して、弊社までご連絡ください。また、コラボレーションしてサービスを拡張してくださる方も募集しています。

Contact