Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: site_status_tests

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
1939            *         Plugins and themes are encouraged to prefix test identifiers with their slug
1940            *         to avoid any collisions between tests.
1941            *
1942            *         @type string $label A friendly label for your test to identify it by.
1943            *         @type mixed  $test  A callable to perform a direct test, or a string AJAX action to be called
1944            *                             to perform an async test.
1945            *     }
1946            * }
1947            */
1948           $tests = apply_filters( 'site_status_tests', $tests );
1949
1950           return $tests;
1951      }
1952
1953      /**
1954       * Add a class to the body HTML tag.
1955       *
1956       * Filters the body class string for admin pages and adds our own class for easier styling.
1957       *