我<a href="<?php the_permalink();?>" Take me to another page </a>
用来将用户带到永久链接页面。
但是,当我这样做时,它是在说No input file specified.
我在主题文件夹中有以下文件:
footer.php
functions.php
header.php
style.css
index.php
为什么这不起作用 - 我是否缺少另一个 php 模板文件?
您的模板文件必须位于 /wp-content/thmes/your-theme/ 下的目录中。将它们插入主题目录后,您必须在 wordpress 管理中激活您的主题。
您还需要至少一个 index.php 文件。那是您放置内容功能的文件。在 index.php 中包含 header.php 和 footer.php 以及 Wordpress 函数 get_header() 和 get_footer()。
我认为您应该更好地阅读文档: