Code-Snippets-Functions/Execute a function on a child site/Yoast SEO/yoast-seo-prevent-redirects-about-page-intro-tour-on-update.txt

18 lines
462 B
Text

add_filter( 'option_wpseo', 'filter_yst_wpseo_option' );
function filter_yst_wpseo_option( $option ) {
// Prevent redirects to the about page
$option['seen_about'] = true;
// Prevent showing the tour popup
$option['ignore_tour'] = true;
// Prevent showing the tracking popup
$option['tracking_popup_done'] = true;
/* Allows our anonymous usage tracking
* We'd appreciate this :)
*/
$option['allow_tracking'] = true;
return $option;
}