我正在尝试为我的wordpress站点构建一个自定义主题,我正在将它从我找到的引导主题组合起来。这是我第一次尝试使用php进行开发,我刚刚完成了列出帖子的学习。因为我有两篇帖子,所以我没有费心去弄清楚如何将循环分解为多个页面(即每页显示10篇帖子,并在底部导航)。
我想学习的是如何让permalinks在我正在构建的主题中工作。我知道wordpress是通过查询和显示这些查询来工作的。我不知道如何获取查询的参数,也不知道这是如何让永久链接和页面工作的。
我还没有找到正确的谷歌搜索参数来解决我的困惑。那么,我应该研究什么,或者是一个教程?
另外,如果我把标签弄错了,或者如果这还不够stackexchangey,我知道这不适合原版。
编辑:
你看,我不知道如何填写我的wp-content/themes/name/index.php
文件这是我迄今为止设置的结构。
<?php
$last_date = \'\';
if( is_home() ) :
while( have_posts() ) :
the_post();
?>
<?php
$the_date = the_date( \'Y\', \'\', \'\', false );
if ( false ) : //$the_date != $last_date ) :
?>
<!-- Year HTML -->
<?php
endif;
$last_date = $the_date;
?>
<!-- Blog Entries (titles, author, tags, date, excerpt -->
<?php
endwhile;
else :
?>
<!-- No Frigging Clue! -->
<?php endif; ?>