Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tom

    (@edge22)

    There’s no way to target WPSP lists specifically, but you can remove the hentry class from all posts like this:

    add_filter( 'post_class', 'tu_remove_hentry_class' );
    function tu_remove_hentry_class( $classes ) {
        $classes = array_diff( $classes, array( 'hentry' ) );
    
        return $classes;
    }
    Thread Starter kasei2040

    (@kasei2040)

    Thank you so much!

    Plugin Author Tom

    (@edge22)

    You’re welcome 🙂

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Remove or Disable Meta Data Markup’ is closed to new replies.