Last active
December 21, 2020 09:10
-
-
Save hissy/6103177 to your computer and use it in GitHub Desktop.
[WordPress] どうしても固定ページテンプレートでページ送り付きのアーカイブが作りたいのよと言う場合
This file contains 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 | |
/** | |
* Template Name: Archive Page */ | |
?> | |
<?php | |
$paged = (int) get_query_var('paged'); | |
$args = array( | |
'posts_per_page' => 3, | |
'paged' => $paged, | |
'orderby' => 'post_date', | |
'order' => 'DESC', | |
'post_type' => 'post', | |
'post_status' => 'publish' | |
); | |
$the_query = new WP_Query($args); | |
if ( $the_query->have_posts() ) : | |
while ( $the_query->have_posts() ) : $the_query->the_post(); | |
get_template_part( 'content', get_post_format() ); | |
endwhile; | |
else: | |
get_template_part( 'content', 'none' ); | |
endif; | |
if ($the_query->max_num_pages > 1) { | |
echo paginate_links(array( | |
'base' => get_pagenum_link(1) . '%_%', | |
'format' => 'page/%#%/', | |
'current' => max(1, $paged), | |
'total' => $the_query->max_num_pages | |
)); | |
} | |
wp_reset_postdata(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment