I am using zenphoto in a scientific context -- cataloging images of animals from a large research project with several 1000 photos (and more to come). The current tagging setup is so clunky (i.e. one has to click expand all fields and choose from a long list of tags) and does not allow for multiple images to be tagged simultaneously.
I am envisioning a page where one can choose an album or tag (or group of tags) and thumbnails are then pulled up from a query. At that point, one can just check all the images that need a certain tag and apply one to all.
Does such a 3rd party plugin exist? I was hoping someone could shed light on this before I invest time coding or hiring someone to do it for me.
thanks
Comments
I am using Zenphoto version 1.2.8. I have decided to use the keywords meta tag for my pages. It works fine for the individual image and album pages, listing only the associated tags, but the index.php and all the gallery pages list EVERY keyword in their meta keywords tag. Is there a way to limit the tags on these pages? Also, I know you can change the sort order of the tags in the admin, but that doesn't seem to affect the order on the actual page when I view source. Can you manually sort the order for the meta tag of the pages?
Thank-you!
As far as sorting goes, there's currently no way to do so from that plugin (without hacking it). Out of curiosity, why would you want the meta tags sorted anyway?
You should be able to specify your own tags within the theme's header, however, to achieve the same effect for these two pages. If you still want to include keywords from elsewhere, it would probably be best to create a custom function for your theme using `getMetaKeywords()` from `html_meta_tags` as a template. From there, you can choose what exactly to include on these two pages and how to sort them. As I said before, the relevant line is 223.
From what I've read, most search engines these days will not pay much attention to the meta keywords (Google in particular; Yahoo might still use them). Also, I highly doubt that the order of the keywords would matter, though I have no evidence for this. Chances are that, if keywords are taken into account, then they will be truncated at some point that is determined by the search engine itself.
As a side comment: wouldn't it be better to use `getAllTagsUnique()` instead of `array_keys(getAllTagsCount())` in `html_meta_tags` line 223?
You can also of course add your meta keywords manually to the head of the theme pages and use tags functions direclty for them.
Google indeed says explicity that it does not use meta data. If I remember correctly except the description that is displayed on the serach results. but not used for ranking. They only use the actual site's content for that.
http://googlewebmastercentral.blogspot.com/2009/09/google-does-not-use-keywords-meta-tag.html
We could of course add text fields to manually add meta keywords that should be used for the untagged pages. But given that they are not really important anymore I am not sure if we should do...
Regarding the `getAllTagsUnique()` you might be right. I don't remember if that function is newer than the plugin or if it was an oversite.