Разработка Плагинов - Мои Таблицы Стилей Не Ставятся В Очередь

  • Автор темы Unariaensuecy8390
  • Обновлено
  • 22, Oct 2024
  • #1

Я использую Wordpress 4.5.2 в Windows 10 и пытаюсь зарегистрировать и поставить в очередь свою таблицу стилей в Wordpress, но она просто не работает. У меня та же проблема с jQuery.

У меня есть этот код в плагине, и я показываю виджет информационной панели, который работает нормально:

 
 p {

color: red;
}
 

Вот немного CSS, который я использую для теста:

<?php /* * Plugin Name: TEST PLUGIN */ /* register styles and scripts * register dash widgets * */ function register_styles() { wp_register_script( 'wildstyle', plugins_url('css/wildstyle.css', __FILE__ ) ); wp_enqueue_script( 'wildstyle' ); } function register_dash_widget() { wp_add_dashboard_widget( 'test-widget', 'Test Widget', 'display_callback' ); } /* add all the actions * * */ add_action( 'wp_enqueue_scripts', 'register_styles' ); add_action( 'wp_dashboard_setup', 'register_dash_widget' ); /* display callback for dashboard metabox * * */ function display_callback() { echo '<p>Testing, testing...</p>'; }

Почему мой текст не красный?

#plugin-development #css #wp-enqueue-script

Unariaensuecy8390


Рег
28 Jun, 2015

Тем
73

Постов
205

Баллов
610
  • 25, Oct 2024
  • #3

Просто измените обе строки:

wp_register_script( 'wildstyle', plugins_url('css/wildstyle.css', __FILE__ ) ); wp_enqueue_script( 'wildstyle' );

к

admin_enqueue_scripts
 

Bmzrrj


Рег
29 Jan, 2012

Тем
59

Постов
181

Баллов
476
Похожие темы Дата
Тем
403,760
Комментарии
400,028
Опыт
2,418,908

Интересно