在WordPress主题中创建自定义小工具区域的步骤如下:
function custom_widgets_init() {
register_sidebar( array(
'name' => '自定义小工具区域',
'id' => 'custom-widget-area',
'description' => '这是自定义小工具区域',
'before_widget' => '<div class="widget">',
'after_widget' => '</div>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'custom_widgets_init' );
if ( is_active_sidebar( 'custom-widget-area' ) ) {
dynamic_sidebar( 'custom-widget-area' );
}
示例代码如上所示,已提供。