The wp-enqueue-style tag has no wiki summary.
0
votes
1answer
272 views
Enqueue styles after a plugin
Is there a way to enqueue my style.css (and other stylesheets) AFTER a certain plugin enqueues its styles?
Specifically, I want my style.css to overwrite cforms's styles, but when I change the ...
0
votes
1answer
55 views
admin_print_styles incuding $_SERVER['DOCUMENT_ROOT']
All the Javascript isn't working in the admin area on my production server.
Locally it works fine. I have narrowed it down to /wp-admin/wp-header.php line 72-78
do_action('admin_print_styles');
...
10
votes
3answers
1k views
How important is it to enqueue a theme's stylesheet?
I have trawled the net looking for an answer to this, but for some reason all I can find are actual examples, but without that particular explanation, which is clear say in the case of scripts. Can ...
2
votes
1answer
67 views
Hyphens vs. periods in the script slug in wp_register_script?
I have seen script and style handles written in two different ways in wp_register_script and wp_enqueue_script (the same applies to wp_register_style and wp_enqueue_style):
wp_register_script( ...
1
vote
3answers
602 views
How do I force wp_enqueue_scripts to load at the END of <head>?
I am loading scripts via wp_enqueue_scripts in my child theme.
The only problem is that my style.css script get loaded BEFORE plugin scripts, yet I need to override the css in the plugins with my ...
0
votes
1answer
205 views
CSS not being applied using wp_enqueue_style
I am trying to load my style sheets in my plugin but they are not being called, the javascript files however, are being loaded.
<?php
/**
Plugin Name:
Plugin URI:
Description:
Version:
Author:
...
2
votes
3answers
143 views
Is it possible to enqueue a raw CSS string directly from within a template file?
I was wondering if it's possible to enqueue raw CSS as a string directly from within a template file?
I'm writing a custom template for a page and need to add some style rules for it. What I want to ...
2
votes
1answer
151 views
TinyMCE custom stylesheets for different post types
I use a custom stylesheet for TinyMCE, by placing custom styles in editor-style.css in my theme's directory.
I am trying to figure out how to use a different stylesheet depending on what post type we ...
0
votes
1answer
165 views
Enqueueing Scripts/Styles mid-page
Since WP 3.3, the codex has been updated for both wp_enqueue_script and wp_enqueue_style that you can now enqueue both mid-page (within the HTML body).
I see this as an advantage because:
It's ...
1
vote
1answer
642 views
How do I make header.php use different css for different pages?
I register styles in function.php with
function my_scripts() {
wp_deregister_style( 'header' );
wp_register_style( 'header', get_template_directory_uri() . '/css/header.css' );
...
3
votes
2answers
566 views
When enqueing a stylesheet, is it possible to remove the type attribute?
I'm updating my self-built theme to HTML5, and easily made a number of changes already.
My theme's sole stylesheet is added to the page head via wp_enqueue_style in the functions.php file, as ...
0
votes
1answer
356 views
Use conditionals with wp_enqueue_style to attach stylesheet according to post type displayed
I have many custom post types, including some introduced by plugin such as bbPress or WooCommerce.
My standard stylesheet is growing large, so I thought to split it into multiple stylesheets ...
1
vote
2answers
86 views
Making a plugin only available on the front-end for the logged in super admin
I made a little plugin that enqueues 1 .js file and 1 .css file into a theme's front-end. All it does it load a grid on top of the theme so I can visualise the design.
If this plugin was activated ...
0
votes
1answer
163 views
Proper use of wp_enqeue_style
I have the following code in my functions.php file. It works, but I am wondering if this is best practice for including styles in wordpress. Also do I need to register the style with wp_reister_style, ...
0
votes
1answer
79 views
How can I print out a single stylesheet or javascript link?
I know I can use enqueue_script and enqueue_style to register scripts and stylesheets, however I'm trying to print out just the link to the adminbar css:
<link rel='stylesheet' id='admin-bar-css' ...
1
vote
2answers
703 views
Wordpress admin stylesheet
Is there a way to override the styles in the admin in my theme?
I don't want to touch the admin style sheet if I don't have to.
I just want to make a column bigger in my admin, but also, to do it in ...
4
votes
1answer
493 views
Load js/css files only on specific admin UI pages
How do I adapt this solution to work with my plugin? (Please see the link).
I enqueue my css and js script as follows:
function my_plugin_init() {
wp_enqueue_script('my_plugin_script', ...
1
vote
2answers
1k views
How to conditionally enqueue a stylesheet only for a certain page(s)?
Before I get started, I want to acknowledge that there are some really good articles that are targeted at how to conditionally enqueue scripts based on page/post content.
WordPress Plugin ...
2
votes
1answer
745 views
How to use wp_enqueue_style() and wp_enqueue_script() only when needed?
My plugin uses wp_enqueue_style() and wp_enqueue_script() to load resources, but I have kept in mind not to degrade the performance for the user and only load these when the current set of posts ...
1
vote
2answers
179 views
getting url in wp_enqueue_style
I'm having trouble getting the second argument in wp_enque_style. Here's how my site is setup:
style.css
custom_style.css
index.php
In a template, I have this code:
$stylesheet_url = ...
0
votes
2answers
267 views
Add 'title' attribute to stylesheets with wp_enqueue_style()
Read below if you want to start from where I left off in core. But the basic question is: I need to add a "title" attribute to my stylesheets and wp_enqueue_style() doesn't allow for that parameter, ...
2
votes
2answers
853 views
How can I de-register ALL styles all at once? And same with Javascript?
How can I get all enqueued styles or scripts and then deregister them all at once?
0
votes
1answer
42 views
How to check via conditional tags for a single plugin page?
I am developing a plugin. To embed the stylesheet I used wp_enqueue_style(). I want the CSS file to be only implemented at the plugin's page. I have already seen solutions with conditional tags, but ...
1
vote
1answer
568 views
wp_enqueue_style with style.php and Wordpress functions
I use wp_enqueue_style to add my stylesheet, like this:
<?php wp_enqueue_style( 'theme-style', get_template_directory_uri() . '/style.php', false, '1.0', 'all' ); ?>
It works fine BUT I need ...
4
votes
1answer
2k views
How to load Widget javascript + css files only if used?
I'd like to keep the javascript and css styles used by my widget inside their own files (and not add them to the theme).
But i can't seem to get wordpress to add them when the widget is actually used ...
0
votes
1answer
390 views
wp_enqueue_style in Plugin [duplicate]
Possible Duplicate:
Where is the right place to register/enqueue scripts & styles
When I enqueue a css style in a plugin like so:
function add_my_stylesheet()
{
wp_enqueue_style( ...
0
votes
1answer
129 views
Enqueuing a script before anything else
I wondered if it was possible to change the order in which a script is enqueued.
I ask this because I wish to include the HTML5 enabling script but it needs to be included before any styles.
Is ...
0
votes
2answers
539 views
Adding style sheet to specific page
I have set a page as a homepage for my site. There are specific style sheets just for the homepage that I don't need to use globally. I'm still new to WordPress so this is so confusing to me.
I ...
1
vote
1answer
402 views
Loading different stylesheet on Wordpress pages?
I have one stylesheet linked to my Wordpress page in header section:
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/style.css" />
Now, I want to ...
0
votes
3answers
633 views
Loading scripts & styles from a meta box callback function
Case:
I got a set of classes that build form fields based on data from an input array. The class can build the following types of form fields:
input (basic, hidden, password)
textarea
radio
...
0
votes
1answer
594 views
Enqueue Style for a page/pages only
it is causing problem because i did not do it before. I am trying to enqueue style or may be scripts depending on page. But it not working. Here is the code:
add_action('init', 'my_enqueue_styles');
...
0
votes
2answers
325 views
wp_enqueue_style for plugin options page
I'm trying to add a stylesheet to the options page for my plugin - code looks like this:
add_action( 'admin_print_styles-rps-paypal', 'rps_paypal_add_css' );
function rps_paypal_add_css() {
...
1
vote
1answer
1k views
Why is style.css not being enqueued?
I got a pretty basic theme and just found out my style.css file doesn't get loaded into the <head>. I already searched around but can't find out, why it's not loading.
I inspected the global ...
11
votes
3answers
2k views
Check if a script/style was enqueued/registered
Is it possible to test whether a script or a style was registered using wp_register_script/_style or wp_enqueue_script/_style? All functions doesn't return a value and I'm completely clueless.
I ...