我的functions.php中的catch_that_image函数适用于我的OG标记 现在我正在尝试使用
输出循环中的图像链接<?php echo catch_that_image(); ?>
目前,即使我有可用的图片,它也只能输出我的备用图片。如何让它输出第一张图像,就像我为我的OG标签做的那样?
对于我的OG标签,我的functions.php,在echo catch_that_image()之前;有
function abc (){
if (is_single()) {
global $post;
$output = preg_match_all('/img src=[\'"]([^\'"]+)[\'"]/i', $post->post_content, $matches);
?>
<meta property="og:image" content="<?php echo catch_that_image(); ?>" />
我应该包括全球$ post&amp;循环中的echo catch_that_image代码中的$ output元素是否正确输出?我应该怎么做呢?
答案 0 :(得分:0)
由于if (is_single()) {
行而看起来像是