Jump to content
  • 0

подключение js и jqery


vitaxastifler
 Share

Question

Парни,есть вот такая фишка,которую я не могу поставить на wordpress получается не подключаются js и jqery.

Вот https://jsfiddle.net/5wkzLfe5/

 

вот так пишу в коде я,но кнопки не выпадают.

<script type="text/javascript" src="<?php echo $this->baseurl ?>maidenhair/js/jquery-1.12.0.min.js"></script>    <script type="text/javascript" src="<?php echo $this->baseurl ?>maidenhair/js/stickers.js"></script>

Где ошибка?
Вот скрины:

e5c14867e71edad1fad15e63219f5c7a.jpg
a5db809ea44c3ca97c9ac5c8888ce3f6.jpg
600eb9671c56e873242169909b93d652.png
Edited by vitaxastifler
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Если вы вставляли эти строки 

 

 

<script src="<?php bloginfo('template_url'); ?>/js/jquery-1.12.0.min.js"></script><script src="<?php bloginfo('template_url'); ?>/js/stickers.js"></script>

 

на место предыдущих (как показано на скриншоте), то понятно, что не заработало. Там вообще-то условие для вывода фавиконки.

Добавьте их прям перед <?php wp_head(); ?>

Edited by Xenia Wanger
  • Like 1
Link to comment
Share on other sites

  • 0

Вот так можно подключить jQuery

<?php wp_enqueue_script('jquery'); ?>

а по-хорошему - подключать свой скрипт в футере (см. последний аргумент - true) и использовать API, указав в зависимостях jQuery. Это для functions.php (или куда ты хуки пишешь):

add_action('wp_enqueue_scripts', 'theme_enqueue_scripts');function theme_enqueue_scripts() {  wp_enqueue_script( 'stickers', get_template_directory_uri() . '/js/stickers.js', array('jquery), '1.0', true );}

Параметры см тут: https://developer.wordpress.org/reference/functions/wp_enqueue_script/

Обычно незачем перетирать встроенную в вордпресс jquery библиотеку, а если даже есть зачем - то не так топорно.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy