投稿を印刷していて、結果の数を取得したいのですが、どうすればそれを行うことができますか?
これは私のコードの一部です:
if (have_posts()) :
$args = array(
'showposts' => '5',
'paged' => $paged
);
$thePosts = query_posts($args);
...
手伝ってくれてありがとう
投稿を印刷していて、結果の数を取得したいのですが、どうすればそれを行うことができますか?
これは私のコードの一部です:
if (have_posts()) :
$args = array(
'showposts' => '5',
'paged' => $paged
);
$thePosts = query_posts($args);
...
手伝ってくれてありがとう
解決済み:
if (have_posts()) :
$args = array(
'showposts' => '5',
'paged' => $paged
);
$thePosts = query_posts($args);
global $wp_query;
echo $wp_query->found_posts;
...
正解は
if (have_posts()) :
$args = array(
'showposts' => '5',
'paged' => $paged
);
$thePosts = query_posts($args);
echo $thePosts ->found_posts;
...
検索結果の数を表示するには、次を使用します。
Search Result for
<?php
/* Search Count */
$allsearch = &new WP_Query("s=$s&showposts=-1");
$key = wp_specialchars($s, 1);
$count = $allsearch->post_count; _e('');
_e('<span class="search-terms">');
echo $key; _e('</span>');
_e(' — ');
echo $count . ' ';
_e('articles');
wp_reset_query();
?>
これはWP Beginnerから取得しました。
検索結果の表示数 :
<?php global $wp_query;
echo $wp_query->post_count; ?>
簡単。この現在のページの結果の数を表示するには、次を使用します
// Showing Page X of Y
print filter_var( absint( $GLOBALS['wp_query']->post_count ), FILTER_SANITIZE_NUMBER_INT );
結果の合計金額については、次を使用します
print filter_var( absint( $GLOBALS['wp_query']->found_posts ), FILTER_SANITIZE_NUMBER_INT );