Code-Snippets-Functions/Execute a function on a child site/Jetpack/move-social-sharing-location.txt

10 lines
292 B
Text

function sv_move_jp_sharing( $content ) {
if ( is_singular( 'post' ) && function_exists( 'sharing_display' ) ) {
remove_filter( 'the_content', 'sharing_display', 19 );
$content = sharing_display() . $content;
}
return $content;
}
add_filter( 'the_content', 'sv_move_jp_sharing' );