帮杨林哥差资料的时候,发现另外一个wordpress获取文章内所有图片的办法

首先在function.php里面写一个函数: function all_img($soContent){ $…


首先在function.php里面写一个函数:

function all_img($soContent){
$soImages = '~<img [^\>]*\ />~';
preg_match_all( $soImages, $soContent, $thePics );
$allPics = count($thePics);
if( $allPics > 0 ){
foreach($thePics[0] as $v){
echo $v;
}
}
else {
echo "<img src='";
echo bloginfo('template_url');
echo "/images/thumb.gif'>";
}
}
register_nav_menus( array(
'primary' => __( 'Primary Navigation'),
));

 

 

需要调用的地方写:

<?php all_img($post->post_content);?>

 

 


《“帮杨林哥差资料的时候,发现另外一个wordpress获取文章内所有图片的办法”》 有 1 条评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据

More posts. You may also be interested in.