Show user description in widget
-
This code shows user description in forum post under the avatar.
add_action('asgarosforum_after_post_author', 'my_function_asgaros_cabinet', 10, 1); function my_function_asgaros_cabinet($author_id) { $userData = get_userdata($author_id); if (!empty($userData) && !empty($userData->description)) { echo '<span style="font-size:8px !important;">'.$userData->description.'</span>'; } }How do i do the same thing but in the widget instead. Recent topis from forum widget.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Show user description in widget’ is closed to new replies.