How to show the number of published posts of a post type?

Support MB Views How to show the number of published posts of a post type?Resolved

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #43753
    EddyPiVEddyPiV
    Participant

    Hi,

    I want to show the number of published posts of post type 'video'.
    I saw the wp_count_posts function, but am struggling to get the code correct.
    {{ mb.wp_count_posts ( 'video' ) }} results in a critical error.

    How to achieve that?

    #43760
    PeterPeter
    Moderator

    Hello,

    That function returns an object so it's not possible to output an object. You can output its property, like this:

    {% set post_count = mb.wp_count_posts ( 'video' ) %}
    {{ post_count.publish }}
    

    Following the documentation https://developer.wordpress.org/reference/functions/wp_count_posts/

    #43765
    EddyPiVEddyPiV
    Participant

    Thanks a ton, Peter.
    Works nicely!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.