WordPressメモ

the_content() コンテンツの出力
get_the_content() コンテンツの取得

コンテンツ中、一番目の画像の取得(簡易)

 $thumbnail_url = false;
 $m = array();
 preg_match('/src="(.*)"/', get_the_content(), $m);
 if (count($m) >= 2) {
  $thumbnail_url = $m[1];
 }
web拍手
This entry was posted in WordPress. Bookmark the permalink.

コメントを残す

メールアドレスが公開されることはありません。

次のHTML タグと属性が使えます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>