|
這是我網站的分頁..我想把它弄成1-10頁這樣! 但是研究了好幾天還是搞不出來
我下載了插件叫 " WP-PageNavi分页导航"
他的安裝指示 要我去 Theme的裡面去插入 編碼
我試了又試就是沒辦法, 麻煩請幫我解答一下 我附上我 Theme的 代碼以下 (Single.php) 還是我弄錯 不應該再Single.php裡修改呢?
<?php get_header(); ?>
<div class="mh-wrapper clearfix">
<div id="main-content" class="mh-content"><?php
mh_before_post_content();
if (have_posts()) :
while (have_posts()) : the_post();
if (is_attachment()) {
get_template_part('content', 'attachment');
} else {
get_template_part('content', get_post_format());
}
endwhile;
mh_after_post_content();
comments_template();
endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>
感謝感謝!!!
|
|