Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: deleted_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
634      if ( 'yes' == $option->autoload ) {
635           $alloptions = wp_load_alloptions();
636           if ( isset( $alloptions[$name] ) ) {
637                unset( $alloptions[$name] );
638                wp_cache_set( 'alloptions', $alloptions, 'options' );
639           }
640      } else {
641           wp_cache_delete( $name, 'options' );
642      }
643      do_action( 'deleted_option', $name );
644      return true;
645 }
646
647 /**
648  * Delete a transient
649  *
650  * @since 2.8.0
651  * @package WordPress
652  * @subpackage Transient