NoremPload Posted September 30, 2015 Posted September 30, 2015 am i blind? isn't there any method to change the tags of images in a template ? thx for any help !
LostKobrakai Posted September 30, 2015 Posted September 30, 2015 If you mean by "in a template" "via the api" then it's this: $page->of(false); $page->image->tags = "Tag One Two Three" $page->save(); // If you want to persist changes Tags are stored as simple string, nothing more.
NoremPload Posted September 30, 2015 Author Posted September 30, 2015 OMG, Thank you :=) i had $gallery_data = $current_gallery->child( 'template=gallery' ); foreach( $gallery_data->image as $image ) { $image->tags = "TEST-Tag"; } $page->save(); $gallery_data->save() did the trick
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now