0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

公開済みカスタムポストの総ポスト件数を一行で取得する方法

Posted at

##公開済みカスタムポストの総ポスト件数を取得

$post_count = wp_count_posts($type='post')->publish;
echo $post_count;

wp_count_posts:wordpress.org
※下書きの件数を取得したい場合はpublishをdraftに変更

##WP_QUERY時に件数を取得

$wp_query=new new WP_Query($args);
echo "全".$query->found_posts."件中/".$query->post_count."件表示";
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?