Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #405728

    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

    #406294

    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

    #406464

    thank you very much!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Edit PostType Portfolio-Entry’ is closed to new replies.