Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_doing_ajax

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
1346  */
1347 function wp_doing_ajax() {
1348      /**
1349       * Filters whether the current request is a WordPress Ajax request.
1350       *
1351       * @since 4.7.0
1352       *
1353       * @param bool $wp_doing_ajax Whether the current request is a WordPress Ajax request.
1354       */
1355      return apply_filters( 'wp_doing_ajax', defined( 'DOING_AJAX' ) && DOING_AJAX );
1356 }
1357
1358 /**
1359  * Determines whether the current request should use themes.
1360  *
1361  * @since 5.1.0
1362  *
1363  * @return bool True if themes should be used, false otherwise.
1364  */