Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the easy-digital-downloads domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/danigirol0/www/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/danigirol0/www/wp-includes/functions.php on line 6114
Añadir los estilos css y js en un plugin en wordpress en el Admin - Dani Girol

Añadir los estilos css y js en un plugin en wordpress en el Admin


//PARA EL ADMIN

function add_my_stylesheet1() {
wp_enqueue_style( 'myCSS1', plugins_url( '/css/style.css', __FILE__ ) );
}

add_action('admin_print_styles', 'add_my_stylesheet1');

 

//PARA ENCOLAR SCRIPS

function add_theme_scripts() {
wp_enqueue_script( 'script', plugins_url( '/js/llamaralcron.js', __FILE__ ), array ( 'jquery' ), 1.1, true);
}

add_action( 'wp_enqueue_scripts', 'add_theme_scripts' );