Подключение библиотеки JQuery и зависящего от нее скрипта
-
Как подключить JQuery и js файл связанный с ним, подключал в header.php и в functions.php ничего не получалось и к тому же у меня не загружаются картинки из таблицы стилей. Вот пример кода:
FUNCTIONS.PHP<?php function tema_scripts_styles() { wp_enqueue_style( 'style', get_stylesheet_uri()); wp_deregister_script( 'jquery' ); wp_register_script('jquery', '//cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js', false, null); wp_enqueue_script('jquery'); } add_action('wp_enqueue_scripts', 'tema_scripts_styles'); ?>
SCRIPT.JS
$('.nav-toggle').on('click', function(){ $('#menu').toggleClass('active'); });
HEAD IN HEADER.PHP
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Document</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"> <link rel="stylesheet" href="style.css"> <?php wp_head(); ?> </head>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Подключение библиотеки JQuery и зависящего от нее скрипта’ is closed to new replies.