have an interesting conundrum. I need to load about 8 javascript files and the same number of styles for my plugin. These are only needed where ever my shortcode is ran.

I've tried to load them with print_styles and print_scripts but they aren't rendering properly, plus to do so breaks xhtml validation. So at the moment they load on every page and due to the number of files needed its not feasible to leave it like this.

On another project I wrote a function into my plugin's index.php file that would take the current page, search it for my shortcode and if found only then would it print the scripts, but this is an ugly hack.

Has anybody got any suggestions or solutions? any help would be appreciated, regards, Daithi

link|improve this question

67% accept rate
feedback

3 Answers

to answer my own question... I had it write the first time. You have to search each page to check that your shortcode is being used. This has to be done when page data is loaded and before page is displayed. To me it is complete overkill on the system, but unfortunately it is the way it is. I got this information from: get_shortcode_regex and old nabble

So first:

add_action('template_redirect','wp_my_shortcode_head');

then:

function wp_my_shortcode_head(){
  global $posts;
  $pattern = get_shortcode_regex(); 
  preg_match('/'.$pattern.'/s', $posts[0]->post_content, $matches); 
  if (is_array($matches) && $matches[2] == 'YOURSHORTCODE') { 
        //shortcode is being used 
  }
}

replace 'YOURSHORTCODE' with the name of your shortcode and add your wp_enqueue_scripts into where it says //shortcode is being used.

link|improve this answer
Great, this will be very useful. All these plugins add so many scripts... By the way, is it better to ask on stackoverflow than wordpress.stackexchange? – huyz Jul 5 '11 at 14:33
feedback

How many pages are these scripts going to be loaded on? Would it be feasible to maintain an array of pages, and only load the scripts/stylesheets when the current page is in the array?

Otherwise, without scanning the code there is no way to do this, as WP doesn't even know the shortcode exists until well into the page load.

link|improve this answer
anywhere the user pastes the shortcode. I found an answer and it seems that I was right the first time. Each page has to be searched as its loaded. Stackoverflow won't let me paste the code as an answer to my own question so here's the links: codex.wordpress.org/Function_Reference/get_shortcode_regex old.nabble.com/… – Coombesy Jun 4 '11 at 7:47
feedback

BraedenP is right, I'm pretty sure there is no way to detect shortcode usage at the execution time of wp_enqueue_scripts / when the stylesheets load.

Is there any reason you must do this in 8 files? One would just be more efficient, then it may not be a problem to load it on every page.

You could consider a PHP stylesheet solution that only executes certain styles if needed. A css.php file may resemble:

<?php
header("content-type: text/css");
/* You can require the blog header to refer to WP variables and make queries */
//require '../../../wp-blog-header.php';
$css = '';
$css .= file_get_contents('style.css');
/* Consider using GET variables or querying a variable in the WP database to determine which stylesheets should be loaded. You could add an option to the backend that allows a stylesheet to be turned on or off. */
if($condition1 == TRUE) $css .= file_get_contents('condition1.css');
if($condition2 == TRUE) $css .= file_get_contents('condition2.css');
?>

Less scripts and less stylesheets means less http requests and a faster load time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.