wordpress wp_get_archives();不工作

时间:2014-05-29 02:29:13

标签: php wordpress

我使用了wp_get_archives(),但它没有显示任何内容。

$loop = new WP_Query( 
array( 
        'post_type' => 'wordpress',
        'posts_per_page' => 10000,
)
); 
wp_get_archives();
while ( $loop->have_posts() ) : $loop->the_post();



include("index-loop.php");

endwhile; ?>

我应该如何展示档案?

1 个答案:

答案 0 :(得分:-1)

试试这个,

<?php
/*
Template Name: Archives
*/
get_header(); ?>
<div id="container">
<div id="content" role="main">
        <?php the_post(); ?>
    <h1 class="entry-title"><?php the_title(); ?></h1>

    <?php get_search_form(); ?>

    <h2>Archives by Month:</h2>
    <ul>
        <?php wp_get_archives('type=monthly'); ?>
    </ul>

    <h2>Archives by Subject:</h2>
    <ul>
         <?php wp_list_categories(); ?>
    </ul>

</div><!-- #content -->
</div><!-- #container -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>

您可以从here.

获取更多信息

和功能信息来自here.