palacios000 Posted April 20, 2019 Share Posted April 20, 2019 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 More sharing options...
dragan Posted April 20, 2019 Share Posted April 20, 2019 $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"); 2 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now