Created
August 8, 2019 15:07
-
-
Save danielbachhuber/395f72bdec98a6177a774fb5b507dbef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Re-positions the "Jump to Recipe" button. | |
*/ | |
add_action( 'init', function(){ | |
if ( method_exists( 'Tasty_Recipes\Shortcodes', 'filter_the_content_late' ) ) { | |
remove_filter( 'the_content', array( 'Tasty_Recipes\Shortcodes', 'filter_the_content_late' ), 100 ); | |
add_filter( 'the_content', array( 'Tasty_Recipes\Shortcodes', 'filter_the_content_late' ), 10 ); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment