我希望向 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