Press ESC to close

How to remove hentry schema tag from WordPress?

By default WordPress adds hentry schema to the website, to remove schema add the following code to functions.php

By default WordPress adds hentry schema to the website, to remove schema add the following code to functions.php

function themes_remove_hentry( $classes ) {
	if ( is_page() ) {
		$classes = array_diff( $classes, array( 'hentry' ) );
  	}

  	else
  	{
  		$classes = array_diff( $classes, array( 'hentry' ) );
  	}
	return $classes;
}
add_filter( 'post_class','themes_remove_hentry' );

Tauseef Abbasi

Hey, I’m Tauseef Abbasi. I explore the fast-moving world of tech and bring you updates, insights, and cool finds. If it's innovative or trending, I’m probably already talking about it.