我正在使用一些自定义的短代码,没有问题。我正在尝试创建一个自定义的视频简写代码,但是wordpress在呈现时总是删除autoplay loop muted playsinline。Poster工作得很完美。你知道为什么吗?
function video_custom() {
extract( shortcode_atts( array(
'option' => '',
'poster' => '',
'src' => '',
'type' => '',
), $atts ) );
return '';
}
add_shortcode('video_custom', 'video_custom');发布于 2022-08-17 03:19:35
您没有为$atts分配任务。所以才知道海报能正常工作。
function video_custom($atts)
{
extract(shortcode_atts(array(
'option' => '',
'poster' => '',
'src' => '',
'type' => '',
), $atts));
return '';
}
add_shortcode('video_custom', 'video_custom');https://wordpress.stackexchange.com/questions/408672
复制相似问题