我從頭開始構建WordPress主題,我想在博客頁面上顯示分頁,但它不起作用。不顯示Wordpress分頁
,這裏是我的index.php
<?php get_header();?>
<div class="container-fluid" style="position: relative;">
<div class="row" style="display: flex; background-color: #F5F5F5;">
<div class="page-content col-md-9">
<div style="padding:0 80px">
<?php while (have_posts()):the_post(); ?>
<div class="col-md-4">
<div class="thumbnails">
<div class="date">
<div class="day">
<?php the_time('d'); ?>
</div>
<div class="month">
<?php the_time('F'); ?>
</div>
</div>
<img src=<?php the_post_thumbnail_url(); ?> alt="" width="400" height="300">
<div class="thumb-text">
<div class="excerpt"><?php the_excerpt(); ?></div>
<a href=<?php the_permalink(); ?> target="_blank"><?php the_title(); ?></a>
</div>
</div>
</div>
<?php endwhile ?>
</div>
<div><?php wp_numeric_posts_nav(); ?></div>
</div>
</div>
</div>
<?php get_footer();?>
我甚至試圖把funtion調用進入死循環,但仍然沒有工作 任何幫助或線索?
謝謝!有效 –