Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_option_{$setting}

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
174 }
175
176 /* Options functions */
177
178 // expects $setting to already be SQL-escaped
179 function get_option($setting) {
180      global $wpdb;
181
182      // Allow plugins to short-circuit options.
183      $pre = apply_filters( 'pre_option_' . $setting, false );
184      if ( false !== $pre )
185           return $pre;
186
187      // prevent non-existent options from triggering multiple queries
188      $notoptions = wp_cache_get('notoptions', 'options');
189      if ( isset($notoptions[$setting]) )
190           return false;
191
192      $alloptions = wp_load_alloptions();