• Resolved Gustav

    (@4ever16)


    You know when you visit a forum thread it shows users forum post count under his avatar.
    But… Is it possible to also show wordpress post count?
    If yes how?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Asgaros

    (@asgaros)

    Hello @4ever16

    You can try the following code which you have to add to your themes functions.php file:

    add_action('asgarosforum_after_post_author', 'show_blog_posts_counter', 10, 2);
    function show_blog_posts_counter($author_id, $post_counter) {
        $user_post_count = count_user_posts($author_id);
    
        echo 'Blog posts: '.user_post_count;
    }

    hab es bei mir auch versucht, aber funktionierte nicht.

    Unter dem Avatar usw. steht dann zwar: Blog posts: aber daneben keine Zahl sondern user_post_count

    Plugin Author Asgaros

    (@asgaros)

    @dimendia Kleiner Fehler im Code ($ vergessen). Versuche es nochmal hiermit:

    add_action('asgarosforum_after_post_author', 'show_blog_posts_counter', 10, 2);
    function show_blog_posts_counter($author_id, $post_counter) {
        $user_post_count = count_user_posts($author_id);
    
        echo 'Blog posts: '.$user_post_count;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Show wordpress posts count’ is closed to new replies.