我第一次定制wordpress主题,我遇到了一个问题。我有静电干扰index.php
文件和我创建的page.php
如下所示的文件:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
我从管理面板创建了一个图库。但是,当我单击图像时,它会将我重定向到
?attachment_id=10
在这一页上
index.php
渲染文件。
我做错了什么?