Hi,
for security reasons i want to change the author of the food items.
Because when you search for a dish, you can see the author in the result list.
I’m the admin, i don’t want to be published.
Pages and post can be changed of author. But i can’t find were to do this for the food items.
Thanks in advance
C
Hi C,
You can do this by adding the following code to the theme’s functions.php
file, or inside a custom plugin:
add_action( 'init', 'nice_custom_menu_author' );
function nice_custom_menu_author() {
add_post_type_support( 'menu', 'author' );
}
Please let us know if that works for you.
Best,
Andrés.
Works like a charm! Even in mute-edit. Perfect!
thanks.
Can you please add this to your next theme update?
I can image that i’m not the only one with this request.
Great to see it worked 🙂
We’re taking this feature into account for our next version. Thanks for the feedback!