最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - JS file work only in index page

programmeradmin3浏览0评论

i load my js files in functions file of the WP but it seems that the script only called in the index page and for other pages it doesnt work..

here is my code in functions file:

function loadjs() {

  wp_register_script('customjs', get_template_directory_uri() . '/custom/js/script.js', '', 1, true);
  wp_enqueue_script('customjs');

  $translation_array = array( 'templateUrl' => get_stylesheet_directory_uri() );
  wp_localize_script('customjs', 'object_name', $translation_array);
}
add_action('wp_enqueue_scripts', 'loadjs');

please help :)

发布评论

评论列表(0)

  1. 暂无评论