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
| <?php if( have_rows('repeater_field_name') ): ?> | |
| <?php while( have_rows('repeater_field_name') ): the_row(); | |
| $image = get_sub_field('image'); | |
| $content = get_sub_field('content'); | |
| ?> | |
| <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt'] ?>" /> | |
| <?php echo $content; ?> |
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
| <?php // Выводим посты | |
| global $post; // не обязательно | |
| // параметры по умолчанию | |
| $args = array( | |
| 'numberposts' => 5, // 5 записей | |
| 'category' => 9, // из рубрики 9 | |
| 'orderby' => 'date', | |
| 'order' => 'DESC', | |
| 'include' => array(), |
NewerOlder