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

Embed Snippet on Your Site

Move Jump to Recipe above featured image in Genesis

<10
Code Preview
php
<?php
/** 
* Ensures the "Jump to Recipe" button is added above the featured image. 
*/
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_action( 'genesis_before_entry_content', function() {
			echo Tasty_RecipesShortcodes::filter_the_content_late( '' );
		});
	}
});

Comments

Add a Comment