我的 functions.php 文件中有以下代码。我想要做的是在我的简码 [模板] 中再添加一个属性(比方说 - “extraclass”)。属性的值应该是额外类的名称,我希望我的代码将这个类添加到 body 标记中。我知道 add_filter 函数,我尝试使用它但没有成功。
function templatefn($atts, $content = null) {
extract(shortcode_atts(array(
"content" => ""
), $atts));
ob_start();
get_template_part('content', $content);
$ret = ob_get_contents();
ob_end_clean();
return $ret;
}
add_shortcode('template', 'templatefn');
提前致谢!