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);
Looking for a skilled WordPress/WooCommerce developer? I'm currently available for freelance, contract, or full-time remote opportunities! Let's create something amazing together. Send me a quick message, and I'll respond within 24 hours!
Recent Posts
- Automating Code Linting with GitHub Actions for WordPress Plugins
- Comprehensive Guide to Linting PHP, JavaScript, and CSS in WordPress Plugins Using Composer
- The Ultimate Guide to Indexing in Database Design
- Understanding 'update_meta_cache' in WordPress - When to Use It, When Not to, and Its Impact on Database Queries
- A Guide to Configuring JavaScript and SCSS Paths in WordPress Plugins with @wordpress/scripts
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.