BUGFIX release v2.0.7
git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2413896 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
0fb5e205c3
commit
e33038a48c
6 changed files with 40 additions and 43 deletions
|
@ -11,7 +11,7 @@
|
|||
* Edited for v2.0.5: Autoload / infinite scroll support added thanks to code from
|
||||
* @docteurfitness <https://wordpress.org/support/topic/auto-load-post-compatibility-update/>
|
||||
*
|
||||
* Last modified 2020-11-06T0425+0100
|
||||
* Last modified 2020-11-06T1344+0100
|
||||
*/
|
||||
|
||||
// If called directly, abort:
|
||||
|
@ -58,42 +58,38 @@ class MCI_Footnotes_Task {
|
|||
* @author Stefan Herndler
|
||||
* @since 1.5.0
|
||||
*
|
||||
* Edited for v2.0.5 2020-11-02T0330+0100 2020-11-04T2006+0100
|
||||
* Edited for v2.0.5 through v2.0.7 2020-11-02T0330+0100..2020-11-06T1344+0100
|
||||
*
|
||||
* Explicitly setting all priority to (default) "10" instead of lowest "PHP_INT_MAX",
|
||||
* especially for the_content, makes the footnotes reference container display
|
||||
* beneath the content and above other features added by other plugins.
|
||||
* Requested by users: <https://wordpress.org/support/topic/change-the-position-5/>
|
||||
* Documentation: <https://codex.wordpress.org/Plugin_API/#Hook_in_your_Filter>
|
||||
*
|
||||
* But then, the blog engine calls this plugin in the editor, as reported in:
|
||||
* <https://wordpress.org/support/topic/blogs-all-messed-up/>
|
||||
* <https://wordpress.org/support/topic/change-the-position-5/#post-13612697>
|
||||
*/
|
||||
public function registerHooks() {
|
||||
// append custom css to the header
|
||||
add_filter('wp_head', array($this, "wp_head"), PHP_INT_MAX);
|
||||
add_filter('wp_head', array($this, "wp_head"), 10);
|
||||
|
||||
// append the love and share me slug to the footer
|
||||
add_filter('wp_footer', array($this, "wp_footer"), PHP_INT_MAX);
|
||||
add_filter('wp_footer', array($this, "wp_footer"), 10);
|
||||
|
||||
if (MCI_Footnotes_Convert::toBool(MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_BOOL_EXPERT_LOOKUP_THE_TITLE))) {
|
||||
add_filter('the_title', array($this, "the_title"), PHP_INT_MAX);
|
||||
add_filter('the_title', array($this, "the_title"), 10);
|
||||
}
|
||||
if (MCI_Footnotes_Convert::toBool(MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_BOOL_EXPERT_LOOKUP_THE_CONTENT))) {
|
||||
add_filter('the_content', array($this, "the_content"), PHP_INT_MAX);
|
||||
add_filter('the_content', array($this, "the_content"), 10);
|
||||
}
|
||||
if (MCI_Footnotes_Convert::toBool(MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_BOOL_EXPERT_LOOKUP_THE_EXCERPT))) {
|
||||
add_filter('the_excerpt', array($this, "the_excerpt"), PHP_INT_MAX);
|
||||
add_filter('the_excerpt', array($this, "the_excerpt"), 10);
|
||||
}
|
||||
if (MCI_Footnotes_Convert::toBool(MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_BOOL_EXPERT_LOOKUP_WIDGET_TITLE))) {
|
||||
add_filter('widget_title', array($this, "widget_title"), PHP_INT_MAX);
|
||||
add_filter('widget_title', array($this, "widget_title"), 10);
|
||||
}
|
||||
if (MCI_Footnotes_Convert::toBool(MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_BOOL_EXPERT_LOOKUP_WIDGET_TEXT))) {
|
||||
add_filter('widget_text', array($this, "widget_text"), PHP_INT_MAX);
|
||||
add_filter('widget_text', array($this, "widget_text"), 10);
|
||||
}
|
||||
if (MCI_Footnotes_Convert::toBool(MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_BOOL_EXPERT_LOOKUP_THE_POST))) {
|
||||
add_filter('the_post', array($this, "the_post"), PHP_INT_MAX);
|
||||
add_filter('the_post', array($this, "the_post"), 10);
|
||||
}
|
||||
// reset stored footnotes when displaying the header
|
||||
self::$a_arr_Footnotes = array();
|
||||
|
|
Reference in a new issue