Changeset 20783 for trunk/wp-includes/option.php
- Timestamp:
- 05/14/2012 04:45:32 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/option.php
r20287 r20783 44 44 if ( defined( 'WP_SETUP_CONFIG' ) ) 45 45 return false; 46 47 $default = apply_filters( 'default_option_' . $option, $default ); 46 48 47 49 if ( ! defined( 'WP_INSTALLING' ) ) { … … 755 757 return $pre; 756 758 759 $default = apply_filters( 'default_site_option_' . $option, $default ); 760 757 761 if ( !is_multisite() ) { 758 762 $value = get_option($option, $default);
Note: See TracChangeset
for help on using the changeset viewer.