Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_option_{$option}

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
325  *
326  * @param string $option Name of option to retrieve. Expected to not be SQL-escaped.
327  * @param mixed $default Optional. Default value to return if the option does not exist.
328  * @return mixed Value set for the option.
329  */
330 function get_option( $option, $default = false ) {
331      global $wpdb;
332
333      // Allow plugins to short-circuit options.
334      $pre = apply_filters( 'pre_option_' . $option, false );
335      if ( false !== $pre )
336           return $pre;
337
338      $option = trim($option);
339      if ( empty($option) )
340           return false;
341
342      if ( defined( 'WP_SETUP_CONFIG' ) )
343           return false;