我想我离实现目标很近了。。我在我的主题上有这个功能,但我需要一个帮助来找到调用简单本地头像功能的正确方法,以便它将显示来自简单本地头像pugin的本地头像图像,而不是wordpress gravatar?
$first_img = get_avatar( $post->post_author );
有人能帮忙吗?
function get_post_image() {
global $post, $posts;
$first_img = \'\';
ob_start();
ob_end_clean();
$output = preg_match_all(\'/<img.+src=[\\\'"]([^\\\'"]+)[\\\'"].*>/i\', $post->post_content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){ //Defines a default image
$first_img = get_avatar( $post->post_author );
}
return $first_img;
}