Easy Footnotes
Easy Footnotes
Description
Easy Footnotes lets you add footnotes throughout your WordPress posts by using the shortcode [efn_note]Footnote content.[/efn_note]. Easy Footnotes will automatically add the number of the footnote where the shortcode was entered and add the full footnote text to the bottom of your post in an ordered list with a corresponding number.
Hovering the footnote label will show the user the full text of the footnote using the jQuery Qtip2 plugin. Clicking on the footnote label will take the user down the page to the corresponding footnote at the bottom of the WordPress post. Each footnote at the bottom of the post has a icon that can be clicked to return to that particular footnote within the post copy.
That’s all it takes to start adding footnotes to your WordPress blog!
Installation
- Upload the ‘easy-footnotes’ folder to the ‘/wp-content/plugins/’ directory.
- Activate the plugin through the ‘Plugins’ menu in WordPress
- That’s it! Now simply start using the [efn_note]Footnote content goes here.[/efn_note] shortcode within your posts.
Faq
Simply use the shortcode [efn_note]Footnote content goes here[/efn_note] and Easy Footnotes will enter numeric footnotes into your post that open on hover and take the user to the footnote at the bottom of the page on click.
I know, but that’s not really a question.
Because it’s easy. And it’s integrated with the qTip2 jQuery plugin to display your footnotes in lovely tooltips on hover. Plus it automatically numbers your footnotes in the order you enter them into your post.
Just use the efn_footnote_label filter in your functions.php to edit the output.
function efn_change_label_markup( $output, $label ) {
return '' . $label . '';
}
add_filter( 'efn_footnote_label', 'efn_change_label_markup', 10, 2 );
Place the following code in your functions.php file to disable the qTip features.
function efn_deregister_scripts() {
wp_deregister_style( 'qtipstyles' );
wp_deregister_script( 'imagesloaded' );
wp_deregister_script( 'qtip' );
wp_deregister_script( 'qtipcall' );
}
add_action( 'wp_enqueue_scripts', 'efn_deregister_scripts' );
Use on the beginning of your page with the short code: [efn_reset][/efn_reset]
This is a hard reset to fix a bug with themes/plugins using do_shortcode( get_the_content() ) outside the main loop and causing duplicate footnotes. 1.1.9 should have updates to not require this.
Reviews
No option to place the footnotes
By scientificnotes on April 4, 2025
Easy Footnotes is an excellent plugin that delivers on its promise of simplicity and speed. It allows for effortless insertion of footnotes, automatically numbering them and appending them to the end of posts. The hover-over functionality enhances user experience by displaying footnote content without navigating away from the main text. However, a notable limitation is the inability to position footnotes elsewhere within a post. Introducing a shortcode, such as [efn_notes], to specify footnote placement would significantly enhance its versatility.
True to its name - Easy to use
By delphineous on March 19, 2025
The Easy Footnotes plug-in is simple and easy to use. I use it to add sub-context, references, and any other information that is relevant to the content but would otherwise disrupt the flow of the post.
Excellent plugin
By kambro on May 29, 2021
Just What the Post Doctor Ordered
By silverliebt on June 20, 2020
sup tag, to stand out more, by adding, for example:
sup {
top: -.5em;
background: linen;
padding: 6px;
border-radius: 4px;
border: 1px #ccc solid;
}
This will give the touch/click target a bit more room due to the padding (and therefore better UX), and visually make the footnote stand out in a pretty professional manner. Choose your own colors. Once again, excellent plugin, many thanks for saving the day!Sober and efficient extension
By spitfrog on April 17, 2020
Great functionality. Simple to use.
By Clarus Dignus on October 8, 2019
Easy to setup and easy to use
By ckoerner on August 10, 2019
Works great, looks professional
By mcfitzsatx on July 13, 2019
Easy to use
By grahamwillis on June 25, 2019
Fantastically Simple, Functional, and Easy-to-Use
By liamdempsey on May 31, 2019
Changelog
1.1.13
- Fixed textdomain loading issue for WordPress 6.7 compatibility by preventing early translation calls during class construction.
1.1.12
- Bugfix for instances where
the_contentis called multiple times in a page.
1.1.11
- Made combined footnote functionality from 1.1.9 enabled by a setting to avoid breaking sites that rely on the old behavior.
- Now can be turned on with “Combine duplicate footnotes” setting in Easy Footnotes settings.
1.1.10
- Fixes a bug with sites that called the_content() multiple times not displaying footnotes due to
easy_footnote_resetrunning. easy_footnote_resetnow only runs when an option is activated. This had previously been implemented as a workaround for a bug that was addressed in 1.1.9.
1.1.9
- Adds support for duplicate footnotes using the same number
- Fixes a bug with multiple footnotes showing at the bottom when do_shortcode() is run on the_content outside the main loop.
- Add better i18n support for the plugin
- Adds [efn_reset] shortcode to reset the footnote count
1.1.8
- WordPress 6.6 support
1.1.6
- Removing themes.pizza references
- WordPress 6.0.2 support
- PHP 8.0 support
1.1.5
- WordPress 5.5 compatability
1.1.4
- Fixing typo on FAQ page
1.1.3
- Adding div.easy-footnote-title into $footnote_label for filtering with
efn_footnote_label
1.1.2
- Fixed issue with default settings not being set on new installations
- Added conditional logic check if settings exist to avoid PHP Warnings
- Fixed undefined index of $efn_output when not using Easy Footnotes label
1.1.1
- Added
efn_footnote_list_outputfilter for editing entire Easy Footnote output after content - Updating SVN to include missing JS file
1.1.0
- Improved accessibility for keyboard navigation of footnotes
- Started improving code to follow WordPress Coding Standards guidelines
- Added second option for footnotes using
[efn_note]to phase out non-prefixed[note] - Added
easy_footnote_labelhook to filter footnote labels - Added
before_footnoteandafter_footnotefilters to add content before or after footnote lists after content.
1.0.16
- Fixing footnote counts for the last time! (Hopefully)
- Added post ID to footnote IDs to make them more unique
- New setting to hide the footnotes after content in Settings > Easy Footnotes
- Prep for a bigger update and beginning Gutenberg support
1.0.15
- Being a noob and not testing a link added in on settings page. It works now.
1.0.14
- CSS tweak in admin screen
1.0.13
- Fixing PHP notice on shortcode when content not found
1.0.12
- Changing how footnotes are numbered to avoid duplicates caused by
the_contentfiltering being applied earlier in themes.
1.0.11
- Fixed bug to prevent tooltips from opening off the screen
1.0.10
- Added in extra sanitization for user inputs within admin
1.0.9
- Fixed issue causing notice of undefined index on admin screen. Adjustment to how footnote’s handle html special chars.
1.0.8
- Added the Qtip2 unfocus event for hiding footnotes on iPad and other touch devices.
1.0.7
- Fixed issue where Footnote title was showing on pages without any footnotes once activated through the settings. Also changed the priority of the add_filter(‘the_content’) call to be 20 in order to show above Jetpack Related Posts
1.0.6
- Added the ability to insert a title above the footnote section at the bottom of the post content. This is controlled in the Easy Footnotes Settings page that can be found under Settings in the WordPress Dashboard.
1.0.5
- Updating logic for appending footnotes to the bottom of posts. Now only appends to single posts, custom post types and pages that are using the main post query. Also fixed footnote count when multiple posts are shown in the content on one page, such as the home page. Footnotes outside of the single post also now link to the footnote within the single post.
1.0.4
- Fixed bug where footnotes were being appended to the end of the content on home pages and ignoring the more tag
1.0.3
- Added a delay of 400ms to the footnote closing so it stays open better when hovered
1.0.2
- I messed up the version tag on 1.0.1. Just upping ti 1.0.2 for precautions.
1.0.1
- Footnotes now stay open when moused over for interacting with links
1.0.0
- Initial release

