please help with setup
-
Hello, my problem that “Load more button” does not appear. Theme, that i use is “Twenty Sixteen”. What settings need to make? I’m using wp-query to show custom post-types:
<div class="list posts-selector-custom-post-type"> <?php $wp_query = new WP_Query( array( 'post_type' => 'vacansion', 'paged' => get_query_var('paged'), 'posts_per_page' => 3 ) ); ?> <?php while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?> <div class="item post custom-post-type"> <div class="textBlock"> <div class="name"><?php the_title(); ?></div> <div class="imgBlock"> <div class="img" style="background-image: url(<?php the_field('vacansionImage'); ?>)"></div> </div> <div class="info"> <div class="prop"><span>Штат:</span> <?php echo get_the_term_list( '', 'state','','','' ); ?> </div> <div class="prop"><span>Позиция:</span> <?php echo get_the_term_list( '', 'position','','','' ); ?></div> <div class="prop"><span>Доступно:</span> <?php echo get_the_term_list( '', 'availability','','','' ); ?></div> </div> <div class="itemName"><?php the_field('vacansionName'); ?></div> <div class="itemDesc"> <p><b>Статус:</b> <?php the_field('vacansionStatus'); ?></p> <p><b>Описание:</b><?php the_excerpt(); ?></p> </div> <div class="clear"></div> </div> <div class="aside"> <a href="<?php the_field('file'); ?>" class="link pdf">Скачать подробное описание</a> </div> </div> <?php endwhile; ?> <?php wp_reset_postdata(); ?> <?php echo get_the_posts_pagination(); ?> </div>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘please help with setup’ is closed to new replies.