Last active
April 20, 2016 14:02
-
-
Save mrfoxtalbot/6c27e1ebab83bc6f8113 to your computer and use it in GitHub Desktop.
Simple Loop using Custom Content Shortcodes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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