wp_assign_widget_to_sidebar

函数
wp_assign_widget_to_sidebar ( $widget_id, $sidebar_id )
参数
  • (string) $widget_id The widget ID to assign.
    Required:
  • (string) $sidebar_id The sidebar ID to assign to. If empty, the widget won't be added to any sidebar.
    Required:
定义位置
相关方法
wp_find_widgets_sidebarwp_get_sidebarwp_parse_widget_idwp_list_widget_controls_dynamic_sidebarwp_ajax_widgets_order
引入
5.8.0
弃用
-

wp_assign_widget_to_sidebar: 这个函数用来把一个widget分配到WordPress的一个特定的侧边栏。它需要两个参数–小工具实例和小工具将被分配的侧边栏的ID: 这个函数也将新的小工具配置保存到数据库中。

为给定的侧边栏分配一个小工具。

function wp_assign_widget_to_sidebar( $widget_id, $sidebar_id ) {
	$sidebars = wp_get_sidebars_widgets();

	foreach ( $sidebars as $maybe_sidebar_id => $widgets ) {
		foreach ( $widgets as $i => $maybe_widget_id ) {
			if ( $widget_id === $maybe_widget_id && $sidebar_id !== $maybe_sidebar_id ) {
				unset( $sidebars[ $maybe_sidebar_id ][ $i ] );
				// We could technically break 2 here, but continue looping in case the ID is duplicated.
				continue 2;
			}
		}
	}

	if ( $sidebar_id ) {
		$sidebars[ $sidebar_id ][] = $widget_id;
	}

	wp_set_sidebars_widgets( $sidebars );
}

常见问题

FAQs
查看更多 >