Transformer rule: gallery
-
Hi,
Facebook has reviewed my blog, and there’s a problem related with post galleries.
I’m trying to set a rule to map in a properly way, but I don’t know how to test it to know what’s the result, or even if it’s working at all.This is the original carousel in my wordpress blog:
<div id="gallery-carousel"> <div class="caroufredsel_wrapper"> <ul class="carousel"> <li class="gallery-item"> <figure> <img src="{image source here}"> <figcaption></figcaption> </figure> </li> <li class="gallery-item"> <figure> <img src="{image source here}"> <figcaption></figcaption> </figure> </li> <li class="gallery-item"> <figure> <img src="{image source here}"> <figcaption></figcaption> </figure> </li> </ul> </div> </div>
This is the rule that I’m trying to set:
{ "rules": [ { "class": "SlideshowRule", "selector": "#gallery-carousel .caroufredsel_wrapper .carousel" }, { "class": "SlideshowImageRule", "selector": ".gallery-item figure", "properties": { "image.url": { "type": "string", "selector": "img", "attribute": "src" }, "caption.title": { "type": "string", "selector": "figcaption" } } } ] }
Is this right?
Thanks in advance.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Transformer rule: gallery’ is closed to new replies.