日期:2020-12-04 阅读:748
在function.php:
function dmpro_widgets_init11() {
register_sidebar( array(
'name' => __( '产品页面的banner', 'textdomain' ),
'id' => 'sidebar-dmpro111',
'description' => __( '', 'textdomain' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '',
) );
}
add_action( 'widgets_init', 'dmpro_widgets_init11' );
--------------
然后在模板文件里调用即可:
<?php
// Calling the sidebar if it exists.
if ( ! dynamic_sidebar( 'sidebar-dmpro111' ) ):
endif;
?>
-----------
利用sidebar和 插件widget-options,可以制作幻灯片功能。