Add temporary hooks for the widgets feature team to wp_widget_control().

props westonruter.
see #26661.
Built from https://develop.svn.wordpress.org/trunk@26865


git-svn-id: http://core.svn.wordpress.org/trunk@26751 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2013-12-23 00:45:11 +00:00
parent 014007f029
commit 507b595c2b
1 changed files with 5 additions and 0 deletions

View File

@ -188,6 +188,8 @@ function wp_widget_control( $sidebar_args ) {
$widget_title = esc_html( strip_tags( $sidebar_args['widget_name'] ) );
$has_form = 'noform';
do_action( 'temp_wp_widget_control_before', $sidebar_args );
echo $sidebar_args['before_widget']; ?>
<div class="widget-top">
<div class="widget-title-action">
@ -237,5 +239,8 @@ function wp_widget_control( $sidebar_args ) {
</div>
<?php
echo $sidebar_args['after_widget'];
do_action( 'temp_wp_widget_control_after', $sidebar_args, 'noform' !== $has_form );
return $sidebar_args;
}