1

我使用 21 作为我的主题,并在 results.php 中创建了一个名为 results.php 的 PHP 页面,这是我的代码:

    <?php

get_header(); ?>

<?php get_footer(); ?>

从我的 index.php:

    <?php get_header(); ?>
<a href="wp-content/themes/twentyeleven/result.php">Main</a>
<?php get_footer(); ?>
4

1 回答 1

1

如果您在 wordpress 上制作自定义页面,

然后您必须将模板名称设置到您的文件中,例如result.php

<?php
    /* Template Name: Result */
    get_header();

    // Rest Stuff for result.php

    get_footer();
?>

希望这能解决你的问题..

更新:请不要使用您在 index.php 文件中给出的直接链接,例如

<a href="wp-content/themes/twentyeleven/result.php">Main</a>

因为您是直接调用,但最好的方法是使用后端result.php的名称创建一个页面,并为该特定页面选择主题。MainResult

于 2012-10-06T05:06:28.167 回答