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!
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