你所需要做的就是为你的主题创建一个自定义页面。下面是一个非常简单的示例:
创建一个名为:page example的文件。php
<?php
/*
Template Name: Example Page
*/
?>
<?php get_header(); ?>
The html code will go here. Don\'t add the <head> or <body> info.
<?php get_footer(); ?>
接下来要做的是将以下内容添加到函数中。php文件:
function load_example_scripts() {
wp_enqueue_script(\'moment\', get_stylesheet_directory_uri() . \'/js/example.js\');
}
add_action( \'wp_enqueue_scripts\', \'load_example_scripts\' );
现在上传页面示例。php到主模板文件夹(其中header.php、footer.php、functions.php)
我通常会在我的主题中添加一个名为“JS”的文件夹,并将所有jquery脚本放在那里。因此,请上传示例。js文件到主题的“js”文件夹。
最后,转到wordpress管理员,编辑希望显示此内容的页面,并在侧菜单的“模板”下选择“示例”。
我必须查看确切的代码才能为您提供更多帮助,但这是最基本的想法。