Code-Snippets-Functions/Execute a function on a child site/All in One SEO Pack/disable-usage-tracking.txt

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');