1-首先你必须child theme 当前主题的
2-然后,在子主题中创建functions.php
文件3-创建js
文件夹和放置fitty.min.js
在其中创建child.js
文件也包含在此js
文件夹4-英寸functions.php 添加以下内容:
<?php // Opening PHP tag - nothing should be before this, not even whitespace
function child_scripts() {
wp_enqueue_script( \'fitty\', get_theme_file_uri( \'/js/fitty.min.js\' ), array(), filemtime( get_theme_file_path( \'/js/fitty.min.js\' ) ), true );
wp_enqueue_script( \'child\', get_theme_file_uri( \'/js/child.js\' ), array( \'jquery\' ), filemtime( get_theme_file_path( \'/js/child.js\' ) ), true );
}
add_action( \'wp_enqueue_scripts\', \'child_scripts\' );
5英寸
child.js 添加以下内容:
(function ($) {
fitty(\'#my-element\'); // Here fitty is targeting the element with an id=\'my-element\'
})(jQuery);
希望这对您有所帮助:)