web-dev-qa-db-ja.com

Wordpressのすべての投稿のカスタムURL

私はフロントページとして静的ページを持つワードプレスサイトを持っています。最近の投稿を表示するための/blogが欲しいのですが。どうやってやるの?

ありがとう。

2
JR Galia

ページカスタムページテンプレート で作成し、次にカスタム WP_Queryオブジェクトを作成します あなたの最後の投稿を返す。

次のようになります。

<?php
/*
Template Name: Blog Page
*/
get_header();

$args = array(
    'post_type' => 'any', #all post types
    'posts_per_page' => 10 #get 10 posts
);
$query = new WP_Query( $args );
if($query->have_posts()):
  while($query->have_posts()):
    $query->the_post();
    the_title(); #display the title
  endwhile;
endif;

get_footer();
3
RRikesh