如何定制Dynamic_侧边栏渲染?

时间:2017-01-18 作者:Vijay Arun

我有一个侧边栏和一个文本小部件。我需要自定义侧栏上文本小部件呈现的内容。

1 个回复
SO网友:Pratik bhatt

当您将其定义为函数时,可以在侧栏中添加类前和类后。php。

<?php $args = array(
    \'name\'          => __( \'Sidebar name\', \'theme_text_domain\' ),
    \'id\'            => \'unique-sidebar-id\',
    \'description\'   => \'\',
        \'class\'         => \'\',
    \'before_widget\' => \'<li id="%1$s" class="widget %2$s">\', //You can change class/id here
    \'after_widget\'  => \'</li>\',
    \'before_title\'  => \'<h2 class="widgettitle">\',
    \'after_title\'   => \'</h2>\' ); ?>

相关推荐

Displaying Widgets

在主题开发期间,我了解如何在functions.php 文件然而,当谈到在主题中显示小部件时,是否有一种首选的方式来显示它们-primary,使用the_widget() 功能与dynamic_sidebar() 作用