我希望在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
答案 0 :(得分: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