Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: query

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
2219            * Filters the database query.
2220            *
2221            * Some queries are made before the plugins have been loaded,
2222            * and thus cannot be filtered with this method.
2223            *
2224            * @since 2.1.0
2225            *
2226            * @param string $query Database query.
2227            */
2228           $query = apply_filters( 'query', $query );
2229
2230           if ( ! $query ) {
2231                $this->insert_id = 0;
2232                return false;
2233           }
2234
2235           $this->flush();
2236
2237           // Log how the function was called.