Remove microformat hentry only in pages
-
How to disable structured data (hentry) only in pages?, I found this function but I think should be a way to do it on the theme:
<?php // Desactivar microformatos hentry de Paginas function remove_hentry( $classes ) { if ( is_page() ) { $classes = array_diff( $classes, array( 'hentry' ) ); } return $classes; } add_filter( 'post_class','remove_hentry' ); ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Remove microformat hentry only in pages’ is closed to new replies.