ในการเปลี่ยนลำดับเริ่มต้นของรายการ Divi Portfolio (โครงการ) คุณสามารถ ทำได้โดยเพิ่มรหัสต่อไปนี้ในไฟล์ functions.php ในโฟลเดอร์ธีมย่อยของคุณ:

// Order the portfolio items by title
add_action( ‘parse_query’, function( $vars ) {
if ( ‘project’ == $vars->query[‘post_type’] )
{
$vars->set( ‘orderby’, ‘title’ );
$vars->set( ‘order’, ‘ASC’ );
}
}); // end custom order