Home / Disable / Prevent Tasty Links inside Tasty Recipes
Duplicate Snippet

Embed Snippet on Your Site

Prevent Tasty Links inside Tasty Recipes

Prefer to keep your recipe cards clear of automatic links from your Tasty Links keywords? No problem!

<10
Code Preview
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' ) );
});

Comments

Add a Comment