プロフィール
とん吉
とん吉
はじめまして、とん吉でぅ。

とん吉ブログを読んでいただき、まこちにありがとうごじます。
< 2024年11月 >
S M T W T F S
          1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
オーナーへメッセージ

WordPress|記事内の一枚目の画像を取得する

2012年08月28日
1. function.phpに下記の記述を追加

function catch_that_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('//i', $post->post_content, $matches);
$first_img = $matches [1] [0];

if(empty($first_img)){ //Defines a default image
$first_img = "画像がない場合に表示させる画像のURLを記述する";
}
return $first_img;
}
?>

2. 画像を追加した場所に下記を挿入する

<img src="<?php echo catch_that_image(); ?>" alt="" width="20" height="20" />


これでOK!!

グリコネットショップ     



同じカテゴリー(WordPress)の記事
 Custom Fields Searchとカスタム投稿 (2012-09-06 15:59)
 WP|Contact form 7へタイトルを自動表示させる (2012-09-06 11:45)
 WP|カスタム投稿の用意 (2012-09-04 15:43)
 WP|カスタムフィールドテンプレート カテゴリー分け (2012-09-04 14:56)

Posted by とん吉 at 13:25│Comments(0)WordPress
 
<ご注意>
書き込まれた内容は公開され、ブログの持ち主だけが削除できます。

削除
WordPress|記事内の一枚目の画像を取得する
    コメント(0)