mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-09 07:00:01 +00:00
Make it obvious that do_shortcode_tag passes the tag as the third parameter. plus code spacing cleanup.
git-svn-id: http://svn.automattic.com/wordpress/trunk@12750 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
45b2389358
commit
e0872e840c
@ -190,23 +190,23 @@ function get_shortcode_regex() {
|
|||||||
* @param array $m Regular expression match array
|
* @param array $m Regular expression match array
|
||||||
* @return mixed False on failure.
|
* @return mixed False on failure.
|
||||||
*/
|
*/
|
||||||
function do_shortcode_tag($m) {
|
function do_shortcode_tag( $m ) {
|
||||||
global $shortcode_tags;
|
global $shortcode_tags;
|
||||||
|
|
||||||
// allow [[foo]] syntax for escaping a tag
|
// allow [[foo]] syntax for escaping a tag
|
||||||
if ($m[1] == '[' && $m[6] == ']') {
|
if ( $m[1] == '[' && $m[6] == ']' ) {
|
||||||
return substr($m[0], 1, -1);
|
return substr($m[0], 1, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
$tag = $m[2];
|
$tag = $m[2];
|
||||||
$attr = shortcode_parse_atts($m[3]);
|
$attr = shortcode_parse_atts( $m[3] );
|
||||||
|
|
||||||
if ( isset($m[5]) ) {
|
if ( isset( $m[5] ) ) {
|
||||||
// enclosing tag - extra parameter
|
// enclosing tag - extra parameter
|
||||||
return $m[1] . call_user_func($shortcode_tags[$tag], $attr, $m[5], $m[2]) . $m[6];
|
return $m[1] . call_user_func( $shortcode_tags[$tag], $attr, $m[5], $tag ) . $m[6];
|
||||||
} else {
|
} else {
|
||||||
// self-closing tag
|
// self-closing tag
|
||||||
return $m[1] . call_user_func($shortcode_tags[$tag], $attr, NULL, $m[2]) . $m[6];
|
return $m[1] . call_user_func( $shortcode_tags[$tag], $attr, NULL, $tag ) . $m[6];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user