以下內容属于 ‘wordpress主题’ 便签:

WordPress获取第一张图作为缩略图

记录WordPress获取第一张图作为缩略图。 首先如果有设置缩略图,则从设置中获取缩略图,没有的话,就从文章中获取第一张图片作为缩略图。 将其添加到functions.php或制作功能插件: 12345678910111213function catch_that_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)) {     $first_img = "/path/to/default.png";   }   return $first_img; } 前端循环输出代码 123456789101112131415if ( get_the_post_thumbnail($post_id) != '' ) {     echo '<a […] (more...)

【免费下载】分享一个收费WordPress Adsense主题模板

分享一个不错的adsense模板,原本是收费的,但是在这里它就是免费滴~ 下载地址:点我下载 (more...)