0

我有这两个功能,我在网上找到并根据我的需要进行了编辑。
我要做的是将wordpress帖子的缩略图设置为默认值,以前在函数本身图像中设置,或者嵌入在帖子中的第一个图像。
然而,某处出了点问题……

wptuts_save_thumbnail($post_id) -> 将帖子的缩略图设置为默认值,或者如果尚未设置第一张图片(由帖子的作者...)!

function wptuts_save_thumbnail( $post_id ) {
$post_thumbnail = get_post_meta( $post_id, '_thumbnail_id', true );

if (!wp_is_post_revision($post_id)) { // Verify that the post is not a revision
    if (empty($post_thumbnail)) {       // Check if Thumbnail does NOT exist!
        $firstImg = firstImg($post_id); // Get the first image of a post (if available)
        if(!$firstImg){ // if available, update the post thumbnail
            update_post_meta( $post_id, '_thumbnail_id', 'link to default image here' );
        } else { // else -> set thumbnail to default thumbnail
            update_post_meta( $post_id, '_thumbnail_id', $firstImg );
        }
    }
}
}

firstImg($post _id) -> 用于获取帖子的第一张图片(通过 id)

function firstImg($post_id) {
  $post = get_post($post_id);
  $first_img = '';
  ob_start();
  ob_end_clean();
  $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
  $first_img = $matches[1][0];

  $urlLength = strlen(site_url());
  $first_img = substr($first_img, $urlLength);

  if(empty($first_img)){
    return false;
  }

  return $first_img;
}

这些函数的唯一问题在于if(!$firstImg) - else语句。
图像将始终设置为默认值,无论是否在帖子中嵌入图像。
$firstImg如果存在则确实返回第一张图像,因此问题必须在 2if的任何一个中:if(empty($first_img))OR if(!$firstImg)
我试图寻找问题的任何线索,但我一无所获。

希望有人可以对这个问题有所了解:)
提前致谢!

附加信息:
- 这两个功能都写在functions.php我的主题中。
-wptuts_save_thumbnail($post_id)设置为每次发布帖子时运行。
- 返回时,$first_img图像的相对路径(即 /wp-contents/uploads/img.jpg),或false.

4

1 回答 1

2

我可以通过查看代码指出,对 firstImg 的检查:

if(!$firstImg){ // if available, update the post thumbnail
  update_post_meta( $post_id, '_thumbnail_id', 'link to default image here' );
} else { // else -> set thumbnail to default thumbnail
  update_post_meta( $post_id, '_thumbnail_id', $firstImg );
}

似乎返回 false,这将为您提供默认图像。

您可以做的是检查转储中的 $matches[1][0] 或 firstImg 函数中的 print_r 的结果。在返回之前还要检查 $first_img 是什么时候。这可以帮助您找到答案,因为您似乎没有在 $first_img 中得到预期的结果。

希望有帮助。

于 2012-12-05T13:47:17.783 回答