1

我希望向 wordpress 添加一个自定义页面,而不是以通常的方式。这个页面有我自己的自定义脚本和函数,开发插件超出了我的能力,所以我想知道这是否可能:

假设我要在我的文件夹中现有的 page.php 脚本上构建它,我的脚本看起来像这样:

<?php get_header(); ?>
                        <div id="left-area" class="clearfix">
                                <?php 

                                //My script would go here 

                                ?>

                                <div class="comments">
                                        <?php comments_template('',true); ?>
                                </div><!-- end of comments div -->             

                        </div><!-- end of left-area -->
                        <!-- LEFT AREA ENDS HERE -->

    <?php get_sidebar(); ?>

<?php get_footer(); ?>

这甚至可能吗?我试过并得到一个找不到页面的错误。如果是这样,假设 WP 安装在根目录中,我该如何调用这个脚本?示例:www.mysite.com/myscript

4

1 回答 1

1

绝对地。重复的 page.php。将其重命名为 template_mine.php。打开编辑,在 get_header 标记之前,添加:

<?php 
//
// Template Name: My Custom template (choose something more descriptive, like contact page)
// 
?>

转到页面的 Wordpress 仪表板,使用您的标题创建一个新页面,然后在右侧的页面属性中,在模板下,选择您的模板名称,更新,一切就绪。

参考:http ://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates

于 2012-05-07T18:34:07.650 回答