I want to get a collection of tags, filtered by date.
My current plugin code:
CODE
my @tags = MT::Tag->load_by_datasource( $type, { 'is_private' => 0, 'blog_id' => $blogId }, );
The code I can not get working:
CODE
my @tags = MT::Tag->load_by_datasource( $type, { 'created_on' => [ '20011008000000', undef ], 'is_private' => 0, 'blog_id' => $blogId }, {range => { created_on => 1 } });
Do I have to do a join on these? Any code examples or corrections to the above would be appreciated.
Thanks...
