mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://aioseo.com/docs/aioseo_schema_disable/ https://wordpress.org/support/topic/remove-schema-5/
5 lines
129 B
Text
5 lines
129 B
Text
add_filter( 'aioseo_schema_disable', 'aioseo_disable_schema' );
|
|
|
|
function aioseo_disable_schema( $disabled ) {
|
|
return true;
|
|
}
|