Remove related posts from the bottom of posts in Jetpack

Remove related posts from the bottom of posts in Jetpack on child sites.

Snippet Type

Execute on Child Sites

Snippet

function jetpackme_remove_rp() {
    if ( class_exists( 'Jetpack_RelatedPosts' ) ) {
        $jprp = Jetpack_RelatedPosts::init();
        $callback = array( $jprp, 'filter_add_target_to_dom' );
 
        remove_filter( 'the_content', $callback, 40 );
    }
}
add_action( 'wp', 'jetpackme_remove_rp', 20 );

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