Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How do you show a member's total post count?


3sixty
Participant

@3sixty

Why wouldn’t this work?:

$blog_post_count = result of whatever function you created to count blog posts. Then:

if ($blog_post_count > 0) echo “Blog posts: ” . $blog_post_count;

So if it’s 0, nothing gets displayed.

Skip to toolbar