php
<?php
add_action( 'init', function() {
    // Remove Tasty Links from Tasty Recipes description, notes, ingredients, and instructions.
    remove_filter( 'tasty_recipes_the_content', array( 'Tasty_LinksIntegrationsTasty_Recipes', 'filter_tasty_recipes_content' ) );
});