我刚刚开始学习wordpress。我决定和underscores starter主题开发我自己的自定义主题。我有一些问题。
我想在文件中有我的问题的答案,但第一次研究的信息似乎太多了。我只是越来越糊涂了。因此,我需要一个直接而清晰的答案来帮助我深入了解文档,然后有一个初步的了解。
The question is:
我已经安装了underscores 我的wordpress网站上的主题。在此之后,我创建了两个页面(page1 和page2).
我已分配page1 作为我的front 第页和page2 作为我的posts 然后翻页。
这个index.php 文件包含以下代码:
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
if ( have_posts() ) :
if ( is_home() && ! is_front_page() ) : ?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php
endif;
/* Start the Loop */
while ( have_posts() ) : the_post();
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( \'template-parts/content\', get_post_format() );
endwhile;
the_posts_navigation();
else :
get_template_part( \'template-parts/content\', \'none\' );
endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
但当我进去的时候mysite.com/index.php, 页面上没有帖子(但据我所知,代码必须对其进行解压缩)。这是我在创建页面时输入的文本。以及page2 (位于mysite.com/page2/) 不显示标题和帖子导航。
所以我不明白:
1) 为什么在我说话的时候mysite.com/index.php 我在创建页面时看到了输入的文本,但在index.php 文件
2) 为什么single_post_title() 函数不返回某些内容?
3) 邮递导航在哪里?在index.php 文件
4) 是posts page 以及home page 是同一页吗?
5) 如何index.php 文件工作?它控制front page 以及post page (也许还有更多的页面)同时?我不明白。
提前感谢!