0

我的 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');

提前致谢!

4

1 回答 1

0

在您的模板中,如果您使用函数body_class()为 body 元素提供不同的 css 类(基于您当前的条件样式页面),您应该能够使用列出的示例对其进行过滤以实现您的结果。

于 2012-09-23T05:40:11.217 回答