看起来你把jquery库的卡片放错地方了。您可以使用wp_enqueue_script 在WordPress中。
wp_enqueue_script( \'jquery-card-script\', get_stylesheet_directory_uri() . \'/js/card.js\', array( \'jquery\' ), \'1.0.0\', true );
在子主题函数中使用上述代码。php并从主js文件调用您的卡。
new Card({
form: document.querySelector(\'form\'),
container: \'.card-wrapper\'
});