大家好,我创建了一个函数,基本上允许用户将youtube的嵌入代码输入到一个名为youtube的自定义字段中,然后在wordpress帖子上设置样式。现在我可以让它完美地工作,直到我想在它周围包装一些CSS。你能看看我哪里做错了吗。我想这是因为我正在关闭和打开PHP代码?谢谢
<?php
function youtube(){
$ytvalue = get_post_custom_values("youtube");
$youtube = $ytvalue[0];
return \'<div class="youtubeVideoWrapper">
<div class="youtubeVideoHeader"></div>
<div style="clear:both"></div>
<div class="youtubeVideoOuterContainer">
<div class="youtubeVideoInnerContainer">\';
return $youtube;
return \'</div>
</div>
</div>
<div style="clear:both"></div>\';
}
add_shortcode(\'youtube\', \'youtube\');
?>