Make WordPress Core

Ticket #40850: class-wp-query.php.diff

File class-wp-query.php.diff, 660 bytes (added by mgibbs189, 7 years ago)

class-wp-query.php patch

  • wp-includes/class-wp-query.php

     
    31443144                        do_action_ref_array( 'loop_end', array( &$this ) );
    31453145                        // Do some cleaning up after the loop
    31463146                        $this->rewind_posts();
     3147                } elseif ( 0 === $this->post_count ) {
     3148                        /**
     3149                         * Fires if no results are found.
     3150                         *
     3151                         * @since 4.8
     3152                         *
     3153                         * @param WP_Query &$this The WP_Query instance (passed by reference).
     3154                         */
     3155                        do_action_ref_array( 'loop_no_results', array( &$this ) );
    31473156                }
    31483157
    31493158                $this->in_the_loop = false;