Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save danielbachhuber/395f72bdec98a6177a774fb5b507dbef to your computer and use it in GitHub Desktop.
Save danielbachhuber/395f72bdec98a6177a774fb5b507dbef to your computer and use it in GitHub Desktop.
<?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