Home / Disable / Move Jump to Recipe above featured image
Duplicate Snippet

Embed Snippet on Your Site

Move Jump to Recipe above featured image

<10
Code Preview
php
<?php
/**
 * Ensures the "Jump to Recipe" button is added to the content really late.
 */
add_action( 'init', function() {
	if ( method_exists( 'Tasty_RecipesShortcodes', 'filter_the_content_late' ) ) {
		remove_filter( 'the_content', array( 'Tasty_RecipesShortcodes', 'filter_the_content_late' ), 100 );
		add_filter( 'the_content', array( 'Tasty_RecipesShortcodes', 'filter_the_content_late' ), 10000 );
	}
});

Comments

Add a Comment