Skip to content

Instantly share code, notes, and snippets.

View levnhub's full-sized avatar
🎯
Focusing

Lev N levnhub

🎯
Focusing
View GitHub Profile
@levnhub
levnhub / wp-acf-repeater.php
Last active August 15, 2017 10:15
Wordpress ACF Repeater
<?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; ?>
@levnhub
levnhub / wp-loops.php
Last active July 27, 2018 01:27
wp loops
<?php // Выводим посты
global $post; // не обязательно
// параметры по умолчанию
$args = array(
'numberposts' => 5, // 5 записей
'category' => 9, // из рубрики 9
'orderby' => 'date',
'order' => 'DESC',
'include' => array(),