mr_sven
Forum Replies Created
-
Forum: Plugins
In reply to: [Eazyest Gallery] HTML Bug in 0.1.0-RC-12thx
Forum: Plugins
In reply to: [Eazyest Gallery] Gallerybock filter by tagsSure, the ids option is supported: http://codex.wordpress.org/Gallery_Shortcode and also in your source. It works, the only thing is, that it makes no sense to filter for a parent id (root folder) if I ship IDs I want to see.
Forum: Plugins
In reply to: [Eazyest Gallery] Gallerybock filter by tagsI’think you didn’t catch me: I have a couple of gallery folders, some of them have a tag, maybe “chair” and now I create a post to show only a sum of this galleries with for example this shortcode: [eazyest_gallery tag=”chair”] .
Now I used an other way to accomplish this, I used this shortcode: [eazyest_gallery ids=”1129,1122,1190,1134,1169″], but this only works if I submit a root folder: [eazyest_gallery ids=”1129,1122,1190,1134,1169″ root=”chairs”]. This is ok for the moment, but if the galleries are in multiple subfolders, it doesn’t work.
So if I don’t ship a root folder, or a root id, do not filter on “post_parent = 0”.
Following can fix it:
File frontend/class-eazyest-shortcodes.php
add line 180:
if ($args['post_parent'] == 0) unset($args['post_parent']);Forum: Plugins
In reply to: [Eazyest Gallery] Gallerybock filter by tagsSorry, what do you mean with an extra loop?