Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用以下代码在页面底部的中间写入页码。但是这些代码将在页面底部而不是中间显示页码。
<?php if($GLOBALS['wp_query']->max_num_pages > 1){ echo '<div>'; get_paged_navigation(); echo '</div>'; } ?>
另外,如果可能的话,请告诉我如何在页脚的顶部写下它,因为它显示了页脚的底部。
提前致谢
设置 div 的宽度,并使用 'margin:auto' 将其置于页面中心
echo '<div style="width:500px;margin:auto;">'; get_paged_navigation(); echo '</div>';