Move the social sharing location in Jetpack Social

Move the social sharing location in Jetpack Social on child sites.

Snippet Type

Execute on Child Sites

Snippet

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' );

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