Pinterest ボタン用にこの 2 つの Wordpress Function を使用しています。私が達成しようとしているのは、以下のフローチャートです。
関数 Catch That Image
function 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)){ //Defines a default image
$first_img = "http://www.mywebsite.com/wp-content/themes/Lord%20of%20Avernus%20-%20Abaddon/Images/Deafult_Img.png";
}
return $first_img;
}
関数 Get アイキャッチ画像
function get_featured_image( $size = 'full' ) {
global $post;
if ( has_post_thumbnail($post->ID) ) {
$featured_image = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), $size);
return $featured_image[0];
}
return false;
}
Wordpressの注目のサムネイル
<?php the_post_thumbnail(); ?>
フローチャートでわかるように、上記の 2 つの機能を組み合わせようとしています。問題は、それが機能していないことです。
これは私のコードです:
機能統合 Pinterest 画像機能
function pinterest_image_snatcher($size = 'full' ) {
global $post;
if ( has_post_thumbnail($post->ID) ) {
$featured_image = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), $size);
return $featured_image[0];
}
else
$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)){ //Defines a default image
$first_img = "http://www.mywebsite.com/wp-content/themes/Lord%20of%20Avernus%20-%20Abaddon/Images/Deafult_Img.png";
}
return $first_img;
}
上記の最初の 2 つの関数は問題なく動作しますが、3 番目の関数はそうではありません! 上記の2つの機能を統合するのを手伝ってくれる人はいますか。誰でもコードを変更できます。
親愛なるPHPの専門家の皆さん、私を助けてください。コードがめちゃくちゃで、機能していません。フローチャートに従ってこれを修正してもよろしいですか?ありがとう!