Önünde sonunda eklentisi stylsheet dahil etmek mümkün değildir (Wordpress)

0 Cevap php

Benim WP sitesinde (ön) benim eklenti stil eklemek çalışıyorum, ama nedense çalışmıyor.

function init_gallery_scripts() {
  if (is_admin() ) {
    // This works!
    wp_enqueue_script('gallery',  plugins_url('js/gallery.js',__FILE__),array('wp-filebrowser'));        
    wp_enqueue_style('gallery-css', plugins_url('style/gallery.css',__FILE__));
  } 
  else {
    // This is not woking. Why?
    wp_enqueue_style('gallery-front-css', plugins_url('style/gallery_front.css',__FILE__));
  }
}

Ben de hiçbir başarı ile denedim:

wp_register_style('gallery-front-css', plugins_url('style/gallery_front.css',__FILE__));
wp_enqueue_style('gallery-front-css');

Değil burada yanlış ne yapıyorum emin olun.

0 Cevap