Hide breadcrumbs on pages in All in One SEO

Hide breadcrumbs on pages in All in One SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'aioseo_breadcrumbs_output', 'aioseo_breadcrumbs_output' );
function aioseo_breadcrumbs_output( $display ) {
	if ( is_singular( 'page' ) ) {
		$display = false;
	}

	return $display;
}
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.