Targeting Sections & Blocks (see video above for walk-through)
Use the data-target attribute within a button element to target specific blocks or sections on the page. To add multiple sections or blocks within a tab, separate each target with a comma. Be sure to wrap all targets in single quotes, ex:
data-target='target-here'
For example:
<div data-wm-plugin="tabs">
<button data-target='#block-id-123'>Tab One</button>
<button data-target='section[data-section-id="123"], section[data-section-id="456"]'>Tab Two</button>
</div>