Home / Archive / Changes the default recipe author name in Tasty Recipes
Duplicate Snippet

Embed Snippet on Your Site

Changes the default recipe author name in Tasty Recipes

Replace 'Your New Default Author Name' inside the quotes with your preferred Author Name and then save the changes.

<10
Code Preview
php
<?php
add_filter(
	'tasty_recipes_default_author_name',
	function() {
		return 'Your New Default Author Name';
	}
);

Comments

Add a Comment