Tagged: parent pages, sidebar, sub pages
Hello All,
Could someone tell me how can I order subpages by date?
Regards,
Hi insomniaworld!
Try adding this to the bottom of your functions.php file.
add_filter( 'avia_sidebar_menu_display_child', 'enfold_customization_sort_date' );
function enfold_customization_sort_date( $args ) {
$args['sort_column'] = 'post_date';
return $args;
}
Best regards,
Elliott