Action hook 'rightnow_end'

in WP Core File wp-admin/includes/dashboard.php at line 422

View Source

rightnow_end

Action Hook
Description
Fires at the end of the 'At a Glance' dashboard widget. Prior to 3.8.0, the widget was named 'Right Now'.

Hook Information

File Location wp-admin/includes/dashboard.php View on GitHub
Hook Type Action
Line Number 422

Hook Parameters

This hook doesn't accept any parameters.

Usage Examples

Basic Usage
<?php
// Hook into rightnow_end
add_action('rightnow_end', 'my_custom_function');

function my_custom_function() {
    // Your custom code here
}

Source Code Context

wp-admin/includes/dashboard.php:422 - How this hook is used in WordPress core
<?php
 417  	 *
 418  	 * Prior to 3.8.0, the widget was named 'Right Now'.
 419  	 *
 420  	 * @since 2.5.0
 421  	 */
 422  	do_action( 'rightnow_end' );
 423  
 424  	/**
 425  	 * Fires at the end of the 'At a Glance' dashboard widget.
 426  	 *
 427  	 * Prior to 3.8.0, the widget was named 'Right Now'.

PHP Documentation

<?php
/**
	 * Fires at the end of the 'At a Glance' dashboard widget.
	 *
	 * Prior to 3.8.0, the widget was named 'Right Now'.
	 *
	 * @since 2.5.0
	 */
Quick Info
  • Hook Type: Action
  • Parameters: 0
  • File: wp-admin/includes/dashboard.php
Related Hooks

Related hooks will be displayed here in future updates.