This is a test of how collapse-o-matic and easy footnotes can work togher. We have modified the Easy Footnotes[note]Easy Footnotes on the WordPress Plugin Repo at: https://wordpress.org/plugins/easy-footnotes/[/note] plugin to allow for filtering before and after the footnote content. The modified plugin is available at Github [note]https://github.com/baden03/easy-footnotes [/note]
The filters used as follows:
add_filter( 'before_footnote', 'pre_footnote', 1);
function pre_footnote($footnote_content) {
$footnote_content .= 'content to place before the footnotes';
return $footnote_content;
}
add_filter( 'after_footnote', 'post_footnote', 1 );
function post_footnote($footnote_content) {
$footnote_content .= 'content to place after the footnoes';
return $footnote_content;
}