nt7121
@nt7121

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

WPの記事の取得件数をデバイスごとに変更したいが条件分岐が反応しません。

解決したいこと

WordPressの記事をスマホでは2件 PCでは3件取得したいが条件分岐が反応しません。
今はquery_postsとwp_is_mobile()を使っています

発生している問題・エラー

wp_is_mobile()が反応しないのかスマホPC共に2件の記事しか出力されない
「query_posts('posts_per_page=2');」は問題なく使えている
========
エラーメッセージ:なし

該当するソースコード

        <?php if( wp_is_mobile() ): ?>
          <?php query_posts('posts_per_page=2'); ?>
        <?php else: ?>
          <?php query_posts('posts_per_page=3'); ?>
        <?php endif; ?>

自分で試したこと

wp_is_mobile()以外の手段を考え調べました
┗Twitter、Google、Qiita使用

0

3Answer

これで動きますか?

<?php
if( wp_is_mobile() ) {
    query_posts('posts_per_page=2');
} else {
    query_posts('posts_per_page=3');
}
?>
1Like

Comments

  1. @nt7121

    Questioner

    動きました!ありがとうございます🙇‍♀️
    個別でのメンションができていなかった為このタイミングでの連絡になり申し訳ございません。

Comments

  1. @nt7121

    Questioner

    ありがとうございます。承知致しました!

Your answer might help someone💌