我得到了一个带有不同名称(profile.php)的index.php文件的副本,我在index.php文件上创建了一个指向profile.php的链接,如下所示:
<a href ="<? php bloginfo ('template_url');?> / profile.php"> profile </ a>
但是当我点击链接时会打开一个完全空白的页面
答案 0 :(得分:3)
href属性中有不必要的空格,用于创建以下链接:
http://yourdomain.com/wp-content/themes/yourtheme%20/%20profile.php
同样在您的代码中,您有<? php
,但它应该没有空格<?php
将您的行更改为:
<a href ="<?php bloginfo ('template_url');?>/profile.php"> profile </ a>