Hi there,
I use the enfold portfolio-entry to display other information as an entry of a portfolio. Because of that, I need to apply portfolio-entries to an author. How can I change that?
Regards
Hey fawnulm!
Thank you for using Enfold.
Add this to the functions.php file:
add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
function avf_portfolio_cpt_args_mod($args) {
$args['supports'][] = 'author';
return $args;
}
Edit a portfolio item, look for screen options then enable the Author metabox.
Best regards,
Ismael
thank you very much!