我在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');
提前致谢!