Comment puis-je obtenir le compte à partir du message de requête
3 réponses
- votes
-
-
Celane répondpas réellement à la question - `post_count` renverra lenombretotal demessages affichés sur lapage actuelle.This does not actually answer the question - `post_count` will return the total number of posts being shown on the current page.
- 1
- 2020-03-06
- Ryan
-
-
- 2017-04-21
La réponse acceptéeiciestfausse,ce quiest également confirmé dansma situation. Veuillez comparer àpartir de lapage référencée:
$post_count Lenombre demessages affichés.
$found_posts Lenombretotal demessagestrouvés correspondant auxparamètres de requête actuels
De cettefaçon,$post_count affichera,parexemple,lenombre demessagesparpage s'il y aplus d'unepage de résultats.Seulement si lenombretotalestinférieur aunombre de résultatsparpage,il correspondra aumontanttotal.
Laméthode correctepour obtenir lenombretotal de résultatsest:
$obj_name->found_posts
.The accepted answer here is wrong which is also confirmed in my situation. Please, compare from the referenced page:
$post_count The number of posts being displayed.
$found_posts The total number of posts found matching the current query parameters
This way, $post_count will show, for example, number of posts per page if there are more than one page of results. Only if total number is less than number of results per page it will match total amount.
The correct method to get total results number is:
$obj_name->found_posts
. -
- 2019-05-21
Pour obtenir lenombretotal demessages renvoyéspar WP_Query,utilisez "found_posts"
Voici l'exemple -
<?php $args = array( 'post_type' => 'post' ); $the_query = new WP_Query( $args ); $totalpost = $the_query->found_posts; ?>
Utilisez votrenom detype depublicationpersonnalisé à laplace de "post",vouspouvez égalementtransmettre l'identifiant de catégorie ("cat"=> 4,)
To get the total number of posts WP_Query returns use "found_posts"
Here is the example -
<?php $args = array( 'post_type' => 'post' ); $the_query = new WP_Query( $args ); $totalpost = $the_query->found_posts; ?>
Use your custom post type name in place of 'post', you can also pass the category id too ( 'cat' => 4,)
Commentpuis-je obtenir lenombre de lignes dans unmessage de requête commemysql count (*).
Commentpuis-jefaire cela?