Hi,
I have a little problem.
I have a query like this:
$myposts = get_posts('numberposts=300&category=3&meta_key=datum_start&orderby=meta_value&order=ASC&meta_key=land_label&meta_value=Road2Africa');
You can see that I want order the posts by the meta value.
But there are a lot of posts with the same meta value.
What I want is this:
First order by meta value.
If there are posts with the same meta value... then this:
Order by title.
How can I do that?
Thanks!