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
@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;
}