X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/76aea3697c6043c1613370f172395b4f65ee71f0..refs/tags/wordpress-2.8-scripts:/wp-includes/shortcodes.php diff --git a/wp-includes/shortcodes.php b/wp-includes/shortcodes.php index 2cc808ce..6ced1816 100644 --- a/wp-includes/shortcodes.php +++ b/wp-includes/shortcodes.php @@ -48,7 +48,7 @@ $shortcode_tags = array(); * There can only be one hook for each shortcode. Which means that if another * plugin has a similar shortcode, it will override yours or yours will override * theirs depending on which order the plugins are included and/or ran. - * + * * Simplest example of a shortcode tag using the API: * * @@ -157,6 +157,14 @@ function do_shortcode($content) { * The regular expression combines the shortcode tags in the regular expression * in a regex class. * + * The regular expresion contains 6 different sub matches to help with parsing. + * + * 1/6 - An extra [ or ] to allow for escaping shortcodes with double [[]] + * 2 - The shortcode name + * 3 - The shortcode argument list + * 4 - The self closing / + * 5 - The content of a shortcode when it wraps some content. + * * @since 2.5 * @uses $shortcode_tags * @@ -167,11 +175,12 @@ function get_shortcode_regex() { $tagnames = array_keys($shortcode_tags); $tagregexp = join( '|', array_map('preg_quote', $tagnames) ); - return '\[('.$tagregexp.')\b(.*?)(?:(\/))?\](?:(.+?)\[\/\1\])?'; + return '(.?)\[('.$tagregexp.')\b(.*?)(?:(\/))?\](?:(.+?)\[\/\2\])?(.?)'; } /** * Regular Expression callable for do_shortcode() for calling shortcode hook. + * @see get_shortcode_regex for details of the match array contents. * * @since 2.5 * @access private @@ -183,15 +192,20 @@ function get_shortcode_regex() { function do_shortcode_tag($m) { global $shortcode_tags; - $tag = $m[1]; - $attr = shortcode_parse_atts($m[2]); + // allow [[foo]] syntax for escaping a tag + if ($m[1] == '[' && $m[6] == ']') { + return substr($m[0], 1, -1); + } + + $tag = $m[2]; + $attr = shortcode_parse_atts($m[3]); - if ( isset($m[4]) ) { + if ( isset($m[5]) ) { // enclosing tag - extra parameter - return call_user_func($shortcode_tags[$tag], $attr, $m[4]); + return $m[1] . call_user_func($shortcode_tags[$tag], $attr, $m[5], $m[2]) . $m[6]; } else { // self-closing tag - return call_user_func($shortcode_tags[$tag], $attr); + return $m[1] . call_user_func($shortcode_tags[$tag], $attr, NULL, $m[2]) . $m[6]; } } @@ -204,7 +218,7 @@ function do_shortcode_tag($m) { * * @since 2.5 * - * @param string $text + * @param string $text * @return array List of attributes and their value. */ function shortcode_parse_atts($text) { @@ -278,6 +292,6 @@ function strip_shortcodes( $content ) { return preg_replace('/'.$pattern.'/s', '', $content); } -add_filter('the_content', 'do_shortcode', 11); // AFTER wpautop() +add_filter('the_content', 'do_shortcode', 11); // AFTER wpautop() ?> \ No newline at end of file