delete_option [ WordPress Function ]
delete_option ( $option )
| Parameters: |
|
| Uses: | |
| Returns: |
|
| Defined at: |
|
Benzer Fonksiyonlar: delete_blog_option, delete_site_option, delete_user_option, get_option, update_option
Removes option by name. Prevents removal of protected WordPress options.
Source
<?php
function delete_option( $option ) {
global $wpdb;
wp_protect_special_option( $option );
// Get the ID, if no ID then return
$row = $wpdb->get_row( $wpdb->prepare( "SELECT autoload FROM $wpdb->options WHERE option_name = %s", $option ) );
if ( is_null( $row ) )
return false;
do_action( 'delete_option', $option );
$result = $wpdb->delete( $wpdb->options, array( 'option_name' => $option ) );
if ( ! defined( 'WP_INSTALLING' ) ) {
if ( 'yes' == $row->autoload ) {
$alloptions = wp_load_alloptions();
if ( is_array( $alloptions ) && isset( $alloptions[$option] ) ) {
unset( $alloptions[$option] );
wp_cache_set( 'alloptions', $alloptions, 'options' );
}
} else {
wp_cache_delete( $option, 'options' );
}
}
if ( $result ) {
do_action( "delete_option_$option", $option );
do_action( 'deleted_option', $option );
return true;
}
return false;
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Function Reference/delete option « WordPress Codex
Description. A safe way of removing a named option/value pair from the options database table. Usage. <?php delete_option( $option ); ?> Parameters. $option ...
codex.wordpress.org - delete_option - 2Checkout Documentation
The delete_option call is used to delete a product option. URL: https://www. 2checkout.com/api/products/delete_option. HTTP Method: POST ...
www.2checkout.com - delete_option (WordPress Function) - WPSeek.com
WordPress lookup for delete_option, a WordPress Function. wpseek.com is a WordPress-centric search tool for developers and theme authors.
wpseek.com - WordPress delete_option(); Wildcard capability? - Stack Overflow
You need to make a "whitelist" of all the variables your plugin sets (I assume you are looking at a plugin uninstall script), then just loop through it at ...
stackoverflow.com