mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
18 lines
462 B
Text
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;
|
|
}
|