• Resolved torren1112

    (@torren1112)


    Hello, how can I show the author’s total number of posts on the profile page?

    I found the code that shows the number of comments, but it doesn’t show the number of posts.

    this code for comment i found post version

    add_filter( ‘um_profile_tabs’, ‘um_072522_add_comment_count’, 10 );
    function um_072522_add_comment_count( $tabs ){

    if ( isset( $tabs['comments'] ) && is_user_logged_in() ) {
        $args = array(
            'user_id' => um_profile_id(),   // Use user_id.
            'count'   => true // Return only the count.
        );
        $comments_count = get_comments( $args );
        $tabs['comments']['notifier'] = $comments_count;
    }
    return $tabs;

    }

    • This topic was modified 3 months ago by torren1112.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.