Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1481502

    I’ve created a portfolio grid and one of the sort options is page order but I can’t find anyway to add a page order to my portfolio items. Many thanks!

    #1481569

    Hey GavinGriffiths,

    Thank you for the inquiry.

    The Page Order field is not available in the Portfolio post type by default, but you can add it using this filter in the functions.php file:

    /* Change portfolio post type settings */
    function avf_portfolio_cpt_args_mod($args) {
    	$args['supports'][] = 'page-attributes';
    	return $args;
    }
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
    

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.