gpt4 book ai didi

PHP 条件函数根据 PINTEREST 的可用性获取不同的图像集

转载 作者:搜寻专家 更新时间:2023-10-31 21:10:54 25 4
gpt4 key购买 nike

我正在为我的 Pinterest 按钮使用这两个 Wordpress 函数。我想要实现的是下面的流程图。

enter image description here

功能捕获该图像

   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;
}

功能获取特色图片

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(); ?> 

如您在我的流程图中所见,我正在尝试将上述两个功能结合起来。问题是它不起作用。

这是我的代码:

功能合并 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;
}

上面的前两个函数工作得很好,但第三个却不行!任何人都可以帮助巩固上述两个功能。欢迎大家修改代码。

亲爱的 PHP 专家,请帮帮我。我的代码乱七八糟,有效。你介意按照流程图修改一下吗?谢谢!

How to add Pinterest button for WordPress Blogs

最佳答案

试试这个:

function pinterest_image_snatcher( $size = 'full' ) {

global $post;
$first_img = '';

if ( has_post_thumbnail($post->ID) ) {
$featured_image = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), $size);
$first_img = $featured_image[0];
} else {
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches[1][0];
if( empty($first_img) ) {
$first_img = "http://www.mywebsite.com/wp-content/themes/Lord%20of%20Avernus%20-%20Abaddon/Images/Deafult_Img.png";
}
}
return $first_img;
}

我只是像@royal-bg 在评论中提到的那样修复了缺失的括号,并稍微改变了逻辑。

关于PHP 条件函数根据 PINTEREST 的可用性获取不同的图像集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19652142/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com