因此,如果我在函数中使用以下内容。php在root off my child文件夹中按设想工作:
add_action( \'wp_enqueue_scripts\', \'register_my_scripts\');
add_action( \'wp_enqueue_scripts\', \'checkboxCheckAll\');
//register_scripts
function register_my_scripts(){
wp_register_script(\'checkboxCheckAll\', get_stylesheet_directory_uri().\'/Lib/dynamic-table/jsScripts/checkboxCheckAll.js\');
}
//enqueue_scripts
function enqueue_my_scripts(){
wp_enqueue_script(\'checkboxCheckAll\');
}
现在,我有了一个自定义页面,其中包含以下代码:
<?php /* Template Name: vagter-flex */ ?>
<?php get_header(); ?>
<div class="x-main full" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-wrap">
<?php x_get_view( \'global\', \'_content\', \'the-content\' ); ?>
<?php require(\'Lib/dynamic-table/functions.php\');?>
</div>
</article>
<?php endwhile; ?>
</div>
<?php get_footer(); ?>
现在,此页面还加载一个名为functions的文件。如果我尝试使用与上面相同的代码将脚本排队,那么它不会工作,不会显示任何错误,也不会发生任何事情?
我只是想说清楚,是的,当我尝试使用脚本时,我在自定义页面上