WordPress標準機能の投稿のアーカイブを公開する。
通常は公開されていない。
以下をfunction.phpに追記する
function post_has_archive( $args, $post_type ) {
if ( 'post' == $post_type ) {
$args['rewrite'] = true;
$args['has_archive'] = 'post-all'; // ページ名
}
return $args;
}
add_filter( 'register_post_type_args', 'post_has_archive', 10, 2 );