__( 'Ajax Widget Area', 'ajax_widgets' ), 'id' => 'ajax-widget-area', 'before_widget' => '", 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'ajaxWidgetsArea_widgetAreaInit' ); /* * Ajax widget control */ function ajaxWidgetArea_widgetControl () { echo '
The widget loads the widgets placed in the \'Ajax Widget Area\' with AJAX, after the page has loaded
'; } wp_register_widget_control( 'ajaxWidgetArea', 'Ajax Widget Area', 'ajaxWidgetArea_widgetControl', null, 'ajax-widget-area'); /* * Ajax widget */ function ajaxWidgetArea_widgetDisplay () { echo '
Loading
'; ?>