Jump to content

Recommended Posts

Posted

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.

 

Posted
$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

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
  • Recently Browsing   0 members

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