mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
12 lines
330 B
Text
12 lines
330 B
Text
function update_aioseo_options_lite() {
|
|
// Define the new option value
|
|
$new_value = array(
|
|
'advanced' => array(
|
|
'usageTracking' => false
|
|
)
|
|
);
|
|
|
|
// Update the option in the database
|
|
update_option('aioseo_options_lite', $new_value);
|
|
}
|
|
add_action('init', 'update_aioseo_options_lite');
|