类别页面中的动态侧边栏标题(Wordpress / Woocommerce)

时间:2017-07-14 07:13:25

标签: php wordpress woocommerce

我在每个类别页面上都有一个侧边栏,我想让窗口小部件的标题动态化,以回显类别名称。 我考虑在侧边栏功能上添加一个php行来回显页面标题。 已注册的sidbar代码:

register_sidebar( array(
    'name'          => __( 'Sidebar Shop Page', 'shop-isle' ),
    'id'            => 'shop-isle-sidebar-shop-archive',
    'description'   => '',
    'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    'after_widget'  => '</aside>',
    'before_title'  => '<h3 class="widget-title">',
    'after_title'   => " php code goes here</h3>",

) );

对于php,我必须承认我是菜鸟,你能给我一个暗示或想法来创建这个功能吗?

提前致谢。

0 个答案:

没有答案