loop_no_results action-hookWP 4.9.0

Fires if no results are found in a post query.

Usage

add_action( 'loop_no_results', 'wp_kama_loop_no_results_action' );

/**
 * Function for `loop_no_results` action-hook.
 * 
 * @param WP_Query $query The WP_Query instance.
 *
 * @return void
 */
function wp_kama_loop_no_results_action( $query ){

	// action...
}
$query(WP_Query)
The WP_Query instance.

Changelog

Since 4.9.0 Introduced.

Where the hook is called

WP_Query::have_posts()
loop_no_results
wp-includes/class-wp-query.php 3723
do_action( 'loop_no_results', $this );

Where the hook is used in WordPress

Usage not found.