我有一个wordpress插件,可以通过一个短代码显示视频。我的问题是它分配了ID为的div,如video-1-player、video-2-player等。我需要创建一个函数来搜索我的内容<div id="video-(any number here)-player">
并在div中添加一个类。
我找到了这个代码,它搜索第一幅图像,然后你就可以打印出来了。我的PHP不够好,无法根据需要进行编辑。也许这对你有帮助?
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 = "/images/default.jpg";
}
return $first_img;
}