Thanks for this great plugin! I also wanted the footnotes to appear before Jetpack share buttons, and just to note an alternative solution for others wanting to do the same, you can move Jetpack share buttons to the bottom of the content (and have the footnotes display before the buttons) by adding the following to your theme’s function.php:
add_filter( 'the_content', 'move_jetpack_sharing', 30 );
function move_jetpack_sharing( $content ) {
if ( is_singular( 'post' ) && function_exists( 'sharing_display' ) ) {
remove_filter( 'the_content', 'sharing_display', 19 );
$content = $content . sharing_display();
}
return $content;
}
-
This reply was modified 8 years, 1 month ago by maitta.