Yoast SEO: Remove HTML Debug Comment Markers
Hides the Yoast SEO HTML comment markers (<!-- This site is optimized with the Yoast SEO plugin -->) from page source output.
PHPby SnipCraft
php
<?php
if ( ! function_exists( 'scseed_yoast_hide_debug_markers' ) ) {
function scseed_yoast_hide_debug_markers() {
if ( ! defined( 'WPSEO_VERSION' ) ) {
return;
}
add_filter( 'wpseo_debug_markers', '__return_false' );
}
add_action( 'init', 'scseed_yoast_hide_debug_markers' );
}#cleanup#html-comments#performance#seo#yoast-seo