mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
5 lines
167 B
Text
5 lines
167 B
Text
add_action( 'slim_seo_init', function( $plugin ) {
|
|
$plugin->disable( 'auto_redirection' );
|
|
$plugin->disable( 'cleaner' );
|
|
$plugin->disable( 'feed' );
|
|
} );
|