Monday 13 October 2003 9:56:25 am
Hi there Craig Are you trying to sort by class (ie. Article, Product, Forum Message, etc.)? If so you want to use: sort_by, array( 'class_name', true() ) If however you want to sort on an identifier with the class it is not documented very well, but what you need to do is also specify the name of the class identifier. ie. The class "Product" has an identifier "product_nr", to sort by this you need to use: sort_by, array( 'class_identifier', array( 'product_nr', true() ) ) Hope this helps.
|