Action hooks that trigger on, before or after add, update or delete actions of option - WordPress
If we need to debug add, update or delete actions on the wp_options
table, we can use below hooks.
add_option
Fires before an option is added.
add_action('add_option', function( $option_name, $option_value ) {
//....
}, 10, 2);
add_option_{$option}
Fires after a specific option has been added.
add_action('add_option_foo', function( $option_name, $option_value ) {
//....
}, 10, 2);
added_option
Fires after an option has been added.
add_action('added_option', function( $option_name, $option_value ) {
//....
}, 10, 2);
update_option
Fires immediately before an option value is updated.
add_action('update_option', function( $option_name, $old_value, $new_value ) {
//....
}, 10, 3);
update_option_{$option}
FFires after the value of a specific option has been successfully updated.
add_action('update_option_foo', function( $option_name, $old_value, $new_value ) {
//....
}, 10, 3);
updateed_option
Fires after an option has been successfully updated.
add_action('updated_option', function( $option_name, $old_value, $new_value ) {
//....
}, 10, 3);
delete_option
Fires immediately before an option is deleted.
add_action('delete_option', function( $option_name ) {
//....
}, 10);
delete_option{$option}
Fires after a specific option has been deleted.
add_action('delete_option_foo', function( $option_name ) {
//....
}, 10);
deleted_option
Fires after an option has been deleted.
add_action('deleted_option', function( $option_name ) {
//....
}, 10);
Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.
Recent Posts
- Disabling Payment Methods in WooCommerce Based on Conditions
- How to Update Product Quantity in WooCommerce Using Custom Code
- Dynamically Generating a Table of Contents in WordPress
- Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
- Understanding the Impact of git reset --hard Command
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.