mirror of
https://github.com/jkjoy/typecho-theme-farallon.git
synced 2026-06-17 10:14:26 +00:00
获取文章第一张图作为cover
This commit is contained in:
+9
-1
@@ -155,4 +155,12 @@ function allwords() {
|
||||
echo '全站共 '.$chars.' 字,写完一本我国著名的四大名著了!';}
|
||||
elseif ($chars>1000000){
|
||||
echo '全站共 '.$chars.' 字,已写一本列夫·托尔斯泰的《战争与和平》了!';}
|
||||
}
|
||||
}
|
||||
function show_first_image($content) {
|
||||
preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $content, $matches);
|
||||
// 检查是否找到了图片
|
||||
if(isset($matches[1][0])){
|
||||
return $matches[1][0];
|
||||
}
|
||||
return false; // 没有找到图片,返回 false
|
||||
}
|
||||
Reference in New Issue
Block a user