We'll create fresh WordPress site with Advanced Footnotes installed. You have 20 minutes to test the plugin after that site we'll be deleted.
Advanced Footnotes lets you add footnotes on articles via shortcodes. Advanced Footnotes is is extremely customizable, therefore it can be implemented on any theme.
With its internal functions, you can also implement Advanced Footnotes on your own theme in any form you like.
Main Features:
Usage
In order to insert a footnote, you can either use the “Insert Footnote” button added on your WYSIWYG editor, or use the [footnote]your-footnote-here[/footnote] shortcode.
“type”: Determines the type of the reference. Options: numeric / non-numeric.
You can display the footnotes in two methods:
By simply inserting the [footnotes] shortcode in your post content, you can display footnotes wherever you want in your posts.
“title”: Determines the title for the footnotes list. Default value can be set through plugin settings.
[footnotes title="My Custom Footnotes Title"]
// or
[footnotes title="false"]
You can print the footnotes by calling print_refs function from the advanced_footnotes class.
call_user_func(array('advanced_footnotes', 'print_refs'));
$footnotes = call_user_func_array(array('advanced_footnotes', 'print_refs'), array(false, 'Custom Footnotes Title'));<h3>Plugin Options:</h3>
You can access the plugin options through “Options/Advanced Footnotes”.
<a id="{unique id}" class="afn-footnotes-ref hook numeric" name="{unique id}" href="#{unique id of the reference}">{number - automatically incremented by the order}</a>
<a id="{unique id}" class="afn-footnotes-ref hook non-numeric" name="{unique id}" href="#{unique id of the reference}">footnote symbol</a>
Non-numbered references are listed before the numbered references on the list.
<!-- Main Container -->
<div class="afn-footnotes">
<!-- Title -->
<h3 class="afn-footnotes-title">{Title}</h3>
<!-- List of references -->
<ul class="afn-footnotes-list">
<!-- Reference item - non-numeric -->
<li class="footnote-item afn-textarea">
<a id="{unique id}" class="afn-footnotes-ref reference non-numeric" name="{unique id}" href="#{unique id of the anchor}">{footnote symbol}</a>
</li>
<!-- Reference item - numeric -->
<li class="footnote-item afn-textarea">
<a id="{unique id}" class="afn-footnotes-ref reference numeric" name="{unique id}" href="#{unique id of the anchor}">{number - automatically incremented by the order}</a>
</li>
</ul>
</div>
Known Issues
Contribution