在WordPress中启用永久链接页面

时间:2013-08-20 11:39:01

标签: php wordpress

我正在使用<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模板文件吗?

1 个答案:

答案 0 :(得分:0)

您的模板文件必须位于/ wp-content / thmes / your-theme /下的目录中。将它们插入主题目录后,您必须在wordpress管理中激活主题。

您还需要至少一个index.php文件。这是您为内容放置功能的文件。在index.php中,你包含了带有Wordpress函数get_header()和get_footer()的header.php和footer.php。

我认为你最好阅读文件:

http://codex.wordpress.org/Using_Themes

http://codex.wordpress.org/Theme_Development