Home Forums WoodMart support forum Split: To add the author’s image and name to both the blog page and single post? Reply To: Split: To add the author’s image and name to both the blog page and single post?

#606400

Luke Nielsen
Keymaster

Hello,

Add the code below into the “functions.php” file in your child theme. Then clear the cache and recheck the issue.

add_action('woodmart_page_title_after_title', function () {
	global $post, $authordata;

	$authordata = get_userdata( $post->post_author );
});

Kind Regards