0

我得到了一个具有不同名称(profile.php)的 index.php 文件的副本,并在 index.php 文件上创建了一个指向 profile.php 的链接,如下所示:

<a href ="<? php bloginfo ('template_url');?> / profile.php"> profile </ a>

但是当我点击链接时会打开一个完全空白的页面

4

1 回答 1

3

您在创建以下链接的 href 属性中有不必要的空格:

http://yourdomain.com/wp-content/themes/yourtheme%20/%20profile.php

同样在您的代码中,<? php但它应该没有空格 <?php

将您的行更改为:

<a href ="<?php bloginfo ('template_url');?>/profile.php"> profile </ a>
于 2013-05-08T08:32:24.303 回答