mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
8 lines
197 B
Text
8 lines
197 B
Text
add_filter( 'aioseo_breadcrumbs_output', 'aioseo_breadcrumbs_output' );
|
|
function aioseo_breadcrumbs_output( $display ) {
|
|
if ( is_singular( 'page' ) ) {
|
|
$display = false;
|
|
}
|
|
|
|
return $display;
|
|
}
|