我需要一些帮助和自定义我的现有脚本的功能。php for wordpress 3.5。这是我的。正如您在这里看到的,默认图片为“无”,将使用
$first_img = $img_dir . \'/images/post-default.jpg\';
我想知道是否有可能只抓取作者的帖子图片。请在下面找到与此功能相关的全部代码。谢谢B4。。
////////////////////////////////////////////////////////////////////////////////
// Get Standard Post Image
////////////////////////////////////////////////////////////////////////////////
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
$img_dir = get_bloginfo(\'template_directory\');
$first_img = $img_dir . \'/images/post-default.jpg\';
}
return $first_img;
}