我想说这是插件的一个怪癖。在这种情况下,最好shortcode.
将此代码添加到函数中。php文件:
function wpse_77036_embed_video( $atts ) {
extract( shortcode_atts( array(
\'homepage\' => \'/\',
\'currentpage\' => $_SERVER[\'REQUEST_URI\'],
\'width\' => 560,
\'height\' => 315,
\'code\' => \'I8M_uCnxhwY\',
), $atts ) );
if ( $homepage != $currentpage ) {
return sprintf(
\'<iframe width="%s" height="%s" src="http://www.youtube.com/embed/%s" frameborder="0" allowfullscreen></iframe>\',
$width,
$height,
$code
);
}
}
add_shortcode( \'embed-video\', \'wpse_77036_embed_video\' );
然后,您可以在帖子中使用此选项,如:
[embed-video width="560" height="315" code="I8M_uCnxhwY"]
如果未提供宽度、高度或代码,则将使用函数中定义的默认值。您还可以通过传递宽度和高度的相同方式将自定义主页或当前页面传递给快捷码。如果您需要更多帮助,请在下面发表评论。