wp_dashboard_trigger_widget_control

Advertisement

Summery Summery

Calls widget control callback.

Syntax Syntax

wp_dashboard_trigger_widget_control( int $widget_control_id = false )

Parameters Parameters

$widget_control_id

(Optional) Registered Widget ID.

Default value: false

Source Source

File: wp-admin/includes/dashboard.php

			_wp_dashboard_recent_comments_row( $comment );
		}
		echo '</ul>';

		if ( current_user_can( 'edit_posts' ) ) {
			echo '<h3 class="screen-reader-text">' . __( 'View more comments' ) . '</h3>';
			_get_list_table( 'WP_Comments_List_Table' )->views();
		}

		wp_comment_reply( -1, false, 'dashboard', false );
		wp_comment_trashnotice();

		echo '</div>';
	} else {

Advertisement

Changelog Changelog

Changelog
Version Description
2.5.0 Introduced.

Advertisement

Leave a Reply