Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_should_upgrade_global_tables

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
3340      if ( ! is_main_site() ) {
3341           $should_upgrade = false;
3342      }
3343
3344      /**
3345       * Filters if upgrade routines should be run on global tables.
3346       *
3347       * @param bool $should_upgrade Whether to run the upgrade routines on global tables.
3348       */
3349      return apply_filters( 'wp_should_upgrade_global_tables', $should_upgrade );
3350 }
3351