PluginProbe
Easy Footnotes / 1.0.12
Easy Footnotes v1.0.12
trunk 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.10 1.1.11 1.1.12 1.1.13 1.1.14 1.1.2 All 32 releases
← All changes | readme.txt +17 -52 1.1.0 → 1.0.12 View file →
@@ -1,19 +1,19 @@
1 1 === Easy Footnotes ===
2 -Contributors: yingling017, twinpictures
2 +Contributors: yingling017
3 3 Donate link: http://jasonyingling.me
4 4 Tags: footnotes, read, blogging, hover, tooltips, editing, endnotes, Formatting, writing, bibliography, notes, reference
5 5 Requires at least: 3.0.1
6 -Tested up to: 5.0
7 -Stable tag: 1.1.0
6 +Tested up to: 4.9.1
7 +Stable tag: 1.0.12
8 8 License: GPLv2 or later
9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
10 10
11 -Easy Footnotes lets you quickly and easily add footnotes throughout your WordPress posts using a simple shortcode in the text editor.
11 +Easy Footnotes let's you quickly and easily add footnotes throughout your WordPress posts using a simple shortcode in the text editor.
12 12
13 13 == Description ==
14 14
15 -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.
15 +Easy Footnotes let's you add footnotes throughout your WordPress posts by using the shortcode [note]Footnote content.[/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.
16 16
17 17 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.
18 18
19 19 That's all it takes to start adding footnotes to your WordPress blog!
@@ -21,15 +21,15 @@
21 21 == Installation ==
22 22
23 23 1. Upload the 'easy-footnotes' folder to the '/wp-content/plugins/' directory.
24 24 2. Activate the plugin through the 'Plugins' menu in WordPress
25 -3. That's it! Now simply start using the [efn_note]Footnote content goes here.[/efn_note] shortcode within your posts.
25 +3. That's it! Now simply start using the [note]Footnote content goes here.[/note] shortcode within your posts.
26 26
27 27 == Frequently Asked Questions ==
28 28
29 29 = How do I insert a footnote into my post. =
30 30
31 -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.
31 +Simply use the shortcode [note]Footnote content goes here[/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.
32 32
33 33 = That's awesome! =
34 34
35 35 I know, but that's not really a question.
@@ -37,19 +37,21 @@
37 37 = Oh right, why is that so awesome? =
38 38
39 39 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.
40 40
41 -= How can I change the markup for the footnote label? =
41 += Any plans for the future? =
42 42
43 -Just use the `efn_footnote_label` filter in your functions.php to edit the output.
43 +Yeah, I'll be integrating more of qTip's options for displaying the tooltips. Give users the ability to set their own icons and labels. And much more as I get user feedback.
44 44
45 -<pre>
46 -function efn_change_label_markup( $output, $label ) {
47 - return '<h5>' . $label . '</h5>';
48 -}
49 -add_filter( 'efn_footnote_label', 'change_efn_label', 10, 2 );
50 -</pre>
45 += That sounds great, but I was thinking more personally. You know, are you up to anything tonight? Want to grab some pizza? =
51 46
47 +How did you even get in here?
48 +
49 += It's cool I'll let myself out. One last question though. Any advice on filling up a new plugins FAQ section? =
50 +
51 +Maecenas sed diam eget risus varius blandit sit amet non magna. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Maecenas faucibus mollis interdum.
52 +
53 +
52 54 == Screenshots ==
53 55
54 56 1. Displaying a footnote on hover.
55 57 2. Several footnotes (feetnote?) at the bottom of the post.
@@ -55,30 +57,8 @@
55 57 2. Several footnotes (feetnote?) at the bottom of the post.
56 58
57 59 == Changelog ==
58 60
59 -= 1.1.0 =
60 -* Improved accessibility for keyboard navigation of footnotes
61 -* Started improving code to follow WordPress Coding Standards guidelines
62 -* Added second option for footnotes using `[efn_note]` to phase out non-prefixed `[note]`
63 -* Added `easy_footnote_label` hook to filter footnote labels
64 -* Added `before_footnote` and `after_footnote` filters to add content before or after footnote lists after content.
65 -
66 -= 1.0.16 =
67 -* Fixing footnote counts for the last time! (Hopefully)
68 -* Added post ID to footnote IDs to make them more unique
69 -* New setting to hide the footnotes after content in Settings > Easy Footnotes
70 -* Prep for a bigger update and beginning Gutenberg support
71 -
72 -= 1.0.15 =
73 -* Being a noob and not testing a link added in on settings page. It works now.
74 -
75 -= 1.0.14 =
76 -* CSS tweak in admin screen
77 -
78 -= 1.0.13 =
79 -* Fixing PHP notice on shortcode when content not found
80 -
81 61 = 1.0.12 =
82 62 * Changing how footnotes are numbered to avoid duplicates caused by `the_content` filtering being applied earlier in themes.
83 63
84 64 = 1.0.11 =
@@ -156,19 +136,4 @@
156 136 Fixed bug to prevent tooltips from opening off the screen
157 137
158 138 = 1.0.12 =
159 139 Changing how footnotes are numbered to avoid duplicates caused by `the_content` filtering being applied earlier in themes.
160 -
161 -= 1.0.13 =
162 -Fixing PHP notice on shortcode when content not found
163 -
164 -= 1.0.14 =
165 -CSS tweak in admin screen
166 -
167 -= 1.0.15 =
168 -Being a noob and not testing a link added in on settings page. It works now.
169 -
170 -= 1.0.16 =
171 -* Fixing footnote counts for the last time! (Hopefully)
172 -* Added post ID to footnote IDs to make them more unique
173 -* New setting to hide the footnotes after content in Settings > Easy Footnotes
174 -* Prep for a bigger update and beginning Gutenberg support