- 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