mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
10 lines
292 B
Text
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' );
|