Quote from
Jim on April 14, 2022, 1:47 pm
@mochkal, this will add the email address to the author info beside each post. You would have to edit to format it as a hyperlinked email address or adjust the size, etc.
// Add email to post author info beside each post
add_action( 'asgarosforum_after_post_author', 'af_add_email_to_author_post_info' );
function af_add_email_to_author_post_info( $author_id ) {
$author_data = get_userdata( $author_id );
$author_email = $author_data->user_email;
echo '<small>'.$author_email.'</small>';
}
@mochkal, this will add the email address to the author info beside each post. You would have to edit to format it as a hyperlinked email address or adjust the size, etc.
// Add email to post author info beside each post
add_action( 'asgarosforum_after_post_author', 'af_add_email_to_author_post_info' );
function af_add_email_to_author_post_info( $author_id ) {
$author_data = get_userdata( $author_id );
$author_email = $author_data->user_email;
echo '<small>'.$author_email.'</small>';
}
mochkal has reacted to this post.