<?php while ( have_rows('headerblock') ) : the_row(); ?>
<?php while ( have_rows('headerblock', 'option') ) : the_row(); ?>
$metas = get_post_meta($post->ID)
Changelog
Added Visual / Text tabs in version 5.0.0
<a href="/?new" class="btn">Сортировать</a>
<?php
if ($key_1 = get_post_meta(get_the_ID(), 'key_1', true)) {
$populargb = new WP_Query('showposts=' . $key_1 . '&orderby=date&order=DESC');
while ($populargb->have_posts()) {
$populargb->the_post();
?>
<div class="sidelist">
<a class="sloy" href="<?php the_permalink() ?>"></a>
<div class="sidetumb"><?php the_post_thumbnail('thumbnail'); ?></div>
<div class="sidemax"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<div class="icon-eye"><?php echo get_post_meta($post->ID, 'views', true); ?></div>
</div>
</div>
<?php
}
wp_reset_query();
}
?>
<?php $key_1 = get_post_meta( get_the_ID(), 'key_1', true ); ?>
<?php var_dump(get_field('x')); ?>
? $myposts = new WP_Query(array('meta_key' => 'post_views_count', 'orderby' => 'meta_value_num'));