:WordPressの投稿コンテンツの上にショートコードの出力が表示されます - 何が間違っていますか?私は、この関数からショートを作成しようとしている
if ($social_sharing && function_exists('wpsp_social_sharing')) :
echo wpsp_social_sharing(get_the_ID(), $twitter = true, $facebook = true, $googleplus = true, $pinterest = true, $love = true, $social_sharing_alignment = 'left');
wp_enqueue_script('wpsp-love-it');
endif;
次のようになります。
function wpsp_social_sharing_shortcode() {
return get_the_title() . wpsp_social_sharing(get_the_ID(), $twitter = true, $facebook = true, $googleplus = true, $pinterest = true, $love = true, $social_sharing_alignment = 'center');
wp_enqueue_script('wpsp-love-it');
}
add_shortcode('sk77_wpsp_social_sharing', 'wpsp_social_sharing_shortcode');
get_the_titleは私が挿入され、適切な場所、で出力されますショートコードしかし、wpsp_social_sharingが投稿内容の上に表示されます。私は間違って何をしていますか?