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

    Hello All,
    Could someone tell me how can I order subpages by date?
    Regards,

    #384538

    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

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