mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-05 12:32:23 +08:00
9 lines
307 B
Text
9 lines
307 B
Text
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 );
|