Home / Archive / Add a “Rate this recipe” Tasty Recipes quick link
Duplicate Snippet

Embed Snippet on Your Site

Add a “Rate this recipe” Tasty Recipes quick link

After applying this snippet, your new quick link should appear at the top of the recipe post

<10
Code Preview
php
<?php
add_filter( 'tasty_recipes_quick_links', function( $links ) {
	$links[] = '<a href="#comments">Rate this Recipe</a>';
	return $links;
} );

Comments

Add a Comment