Jump to content

how to sort files in filetype "files" on front-end


palacios000
 Share

Recommended Posts

Is it possible to sort files inside a field "Files"? I've tryed with $page->files("sort=basename"), I guess a selector for files field is not the right way to go...

is a solution similar to this the right approach or there is an easier way? Thanks for any input.

 

Link to comment
Share on other sites

$res = pages(1067)->files->sort("filename"); // or page()->files->sort("filename")

btw: this syntax assumes you have enabled functions API in site/config.php: $config->useFunctionsAPI = true;

otherwise you'd just use

$page->files->sort("filename");

  • Like 2
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...