Skip to content

Instantly share code, notes, and snippets.

@mrfoxtalbot
Last active April 20, 2016 14:02
Show Gist options
  • Select an option

  • Save mrfoxtalbot/6c27e1ebab83bc6f8113 to your computer and use it in GitHub Desktop.

Select an option

Save mrfoxtalbot/6c27e1ebab83bc6f8113 to your computer and use it in GitHub Desktop.
Simple Loop using Custom Content Shortcodes
// https://wordpress.org/plugins/custom-content-shortcode/
<div class="section group wrap">
[loop type=post category=my-category-slug count=10]
<div class="section group">
<div class="col span_1_of_2">
[field image size="image-size-name"]
</div>
<div class="col span_1_of_2">
<div class="fecha">[field date]</div>
<div class="breve"> [field excerpt]</div>
<div class="titulo"> [field title-link]</div>
</div>
</div>
[/loop]
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment