源码
更新日志
版本 | 描述 |
---|---|
2.2.0 | 开始引入 |
使用示例
例如,用于注册边栏:
function mytheme_widgets_init() { register_sidebar( array( 'name' => __( 'Single Post Widgets', 'textdomain' ), 'id' => 'mytheme-single-post-widgets', 'description' => __( 'Widgets in this area will be shown under your single posts, before comments.', 'textdomain' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', 'after_title' => '', ) ); } add_action( 'widgets_init', 'mytheme_widgets_init' );
您应该注意,
widgets_init
钩子是作为init
钩子的一部分启动的,优先级为1。这意味着它将在您以默认优先级添加到
init
挂钩的任何代码之前触发。