在WordPress中,你可以使用以下方法在特定的单页面或归档页面上触发JS:
function load_custom_js() {
if (is_page(5)) {
wp_enqueue_script('custom-js', get_template_directory_uri() . '/js/custom.js', array('jquery'), '1.0', true);
}
}
add_action('wp_enqueue_scripts', 'load_custom_js');
template-custom.php
,然后在文件中添加以下代码:<?php
/*
Template Name: Custom Template
*/
?>
<?php get_header(); ?>
<!-- Your HTML content -->
<script>
// Your JS code
</script>
<?php get_footer(); ?>
保存文件后,在WordPress后台的页面编辑器中选择这个自定义模板,然后在页面中添加你的HTML内容和JS代码。
无论你选择哪种方法,记得在编写JS代码时遵循最佳实践,确保代码的正确性和性能。此外,你还可以使用腾讯云的云服务器(CVM)来托管你的WordPress网站,并使用腾讯云CDN加速你的静态资源,提高网站的访问速度和性能。
希望以上信息对你有帮助!如有更多问题,请随时提问。
领取专属 10元无门槛券
手把手带您无忧上云