2008-01-25 20:21:11 +01:00
|
|
|
<?php
|
2008-06-26 17:55:33 +02:00
|
|
|
/**
|
2016-06-26 16:26:29 +02:00
|
|
|
* WordPress API for creating bbcode-like tags or what WordPress calls
|
|
|
|
* "shortcodes". The tag and attribute parsing or regular expression code is
|
2008-06-26 17:55:33 +02:00
|
|
|
* based on the Textpattern tag parser.
|
|
|
|
*
|
|
|
|
* A few examples are below:
|
|
|
|
*
|
|
|
|
* [shortcode /]
|
|
|
|
* [shortcode foo="bar" baz="bing" /]
|
|
|
|
* [shortcode foo="bar"]content[/shortcode]
|
|
|
|
*
|
|
|
|
* Shortcode tags support attributes and enclosed content, but does not entirely
|
|
|
|
* support inline shortcodes in other shortcodes. You will have to call the
|
|
|
|
* shortcode parser in your function to account for that.
|
|
|
|
*
|
|
|
|
* {@internal
|
|
|
|
* Please be aware that the above note was made during the beta of WordPress 2.6
|
|
|
|
* and in the future may not be accurate. Please update the note when it is no
|
|
|
|
* longer the case.}}
|
|
|
|
*
|
|
|
|
* To apply shortcode tags to content:
|
|
|
|
*
|
2022-09-27 00:43:10 +02:00
|
|
|
* $out = do_shortcode( $content );
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2019-07-26 00:45:57 +02:00
|
|
|
* @link https://developer.wordpress.org/plugins/shortcodes/
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Shortcodes
|
2013-12-24 19:57:12 +01:00
|
|
|
* @since 2.5.0
|
2008-06-26 17:55:33 +02:00
|
|
|
*/
|
2008-01-25 20:21:11 +01:00
|
|
|
|
2008-06-26 17:55:33 +02:00
|
|
|
/**
|
2022-06-28 22:37:15 +02:00
|
|
|
* Container for storing shortcode tags and their hook to call for the shortcode.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2013-12-24 19:57:12 +01:00
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2008-06-26 17:55:33 +02:00
|
|
|
* @name $shortcode_tags
|
|
|
|
* @var array
|
|
|
|
* @global array $shortcode_tags
|
|
|
|
*/
|
2008-01-25 20:21:11 +01:00
|
|
|
$shortcode_tags = array();
|
|
|
|
|
2008-06-26 17:55:33 +02:00
|
|
|
/**
|
2017-08-20 21:44:42 +02:00
|
|
|
* Adds a new shortcode.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2017-08-20 22:38:42 +02:00
|
|
|
* Care should be taken through prefixing or other means to ensure that the
|
|
|
|
* shortcode tag being added is unique and will not conflict with other,
|
|
|
|
* already-added shortcode tags. In the event of a duplicated tag, the tag
|
|
|
|
* loaded last will take precedence.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2013-12-24 19:57:12 +01:00
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2015-05-27 21:39:25 +02:00
|
|
|
* @global array $shortcode_tags
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2017-08-20 21:48:45 +02:00
|
|
|
* @param string $tag Shortcode tag to be searched in post content.
|
|
|
|
* @param callable $callback The callback function to run when the shortcode is found.
|
|
|
|
* Every shortcode callback is passed three parameters by default,
|
2017-08-20 21:56:45 +02:00
|
|
|
* including an array of attributes (`$atts`), the shortcode content
|
|
|
|
* or null if not set (`$content`), and finally the shortcode tag
|
|
|
|
* itself (`$shortcode_tag`), in that order.
|
2008-06-26 17:55:33 +02:00
|
|
|
*/
|
2017-08-20 21:48:45 +02:00
|
|
|
function add_shortcode( $tag, $callback ) {
|
2008-01-25 20:21:11 +01:00
|
|
|
global $shortcode_tags;
|
2015-10-01 19:34:24 +02:00
|
|
|
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( '' === trim( $tag ) ) {
|
2021-06-15 17:22:58 +02:00
|
|
|
_doing_it_wrong(
|
|
|
|
__FUNCTION__,
|
|
|
|
__( 'Invalid shortcode name: Empty name given.' ),
|
|
|
|
'4.4.0'
|
|
|
|
);
|
2015-10-01 19:34:24 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-12-26 05:46:28 +01:00
|
|
|
if ( 0 !== preg_match( '@[<>&/\[\]\x00-\x20=]@', $tag ) ) {
|
2021-06-15 17:22:58 +02:00
|
|
|
_doing_it_wrong(
|
|
|
|
__FUNCTION__,
|
|
|
|
sprintf(
|
|
|
|
/* translators: 1: Shortcode name, 2: Space-separated list of reserved characters. */
|
|
|
|
__( 'Invalid shortcode name: %1$s. Do not use spaces or reserved characters: %2$s' ),
|
|
|
|
$tag,
|
|
|
|
'& / < > [ ] ='
|
|
|
|
),
|
|
|
|
'4.4.0'
|
|
|
|
);
|
2015-10-01 19:34:24 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-20 21:48:45 +02:00
|
|
|
$shortcode_tags[ $tag ] = $callback;
|
2008-01-25 20:21:11 +01:00
|
|
|
}
|
|
|
|
|
2008-06-26 17:55:33 +02:00
|
|
|
/**
|
|
|
|
* Removes hook for shortcode.
|
|
|
|
*
|
2013-12-24 19:57:12 +01:00
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2015-05-27 21:39:25 +02:00
|
|
|
* @global array $shortcode_tags
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2015-01-19 09:40:24 +01:00
|
|
|
* @param string $tag Shortcode tag to remove hook for.
|
2008-06-26 17:55:33 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function remove_shortcode( $tag ) {
|
2008-01-25 20:21:11 +01:00
|
|
|
global $shortcode_tags;
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
unset( $shortcode_tags[ $tag ] );
|
2008-01-25 20:21:11 +01:00
|
|
|
}
|
|
|
|
|
2008-06-26 17:55:33 +02:00
|
|
|
/**
|
2022-06-28 22:37:15 +02:00
|
|
|
* Clears all shortcodes.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2022-06-28 22:37:15 +02:00
|
|
|
* This function clears all of the shortcode tags by replacing the shortcodes global with
|
|
|
|
* an empty array. This is actually an efficient method for removing all shortcodes.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2013-12-24 19:57:12 +01:00
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2015-05-27 21:39:25 +02:00
|
|
|
* @global array $shortcode_tags
|
2008-06-26 17:55:33 +02:00
|
|
|
*/
|
2008-01-25 20:21:11 +01:00
|
|
|
function remove_all_shortcodes() {
|
|
|
|
global $shortcode_tags;
|
|
|
|
|
|
|
|
$shortcode_tags = array();
|
|
|
|
}
|
|
|
|
|
2013-03-16 06:25:44 +01:00
|
|
|
/**
|
2022-06-28 22:37:15 +02:00
|
|
|
* Determines whether a registered shortcode exists named $tag.
|
2013-03-16 06:25:44 +01:00
|
|
|
*
|
|
|
|
* @since 3.6.0
|
|
|
|
*
|
2015-01-19 09:40:24 +01:00
|
|
|
* @global array $shortcode_tags List of shortcode tags and their callback hooks.
|
|
|
|
*
|
|
|
|
* @param string $tag Shortcode tag to check.
|
|
|
|
* @return bool Whether the given shortcode exists.
|
2013-03-16 06:25:44 +01:00
|
|
|
*/
|
|
|
|
function shortcode_exists( $tag ) {
|
|
|
|
global $shortcode_tags;
|
|
|
|
return array_key_exists( $tag, $shortcode_tags );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-06-28 22:37:15 +02:00
|
|
|
* Determines whether the passed content contains the specified shortcode.
|
2013-03-16 06:25:44 +01:00
|
|
|
*
|
|
|
|
* @since 3.6.0
|
|
|
|
*
|
|
|
|
* @global array $shortcode_tags
|
2015-01-19 09:36:25 +01:00
|
|
|
*
|
|
|
|
* @param string $content Content to search for shortcodes.
|
|
|
|
* @param string $tag Shortcode tag to check.
|
2015-01-19 09:47:24 +01:00
|
|
|
* @return bool Whether the passed content contains the given shortcode.
|
2013-03-16 06:25:44 +01:00
|
|
|
*/
|
|
|
|
function has_shortcode( $content, $tag ) {
|
Code Modernization: Replace usage of `strpos()` with `str_contains()`.
`str_contains()` was introduced in PHP 8.0 to perform a case-sensitive check indicating if the string to search in (haystack) contains the given substring (needle).
WordPress core includes a polyfill for `str_contains()` on PHP < 8.0 as of WordPress 5.9.
This commit replaces `false !== strpos( ... )` with `str_contains()` in core files, making the code more readable and consistent, as well as better aligned with modern development practices.
Follow-up to [52039], [52040], [52326], [55703], [55710], [55987].
Props Soean, spacedmonkey, costdev, dingo_d, azaozz, mikeschroder, flixos90, peterwilsoncc, SergeyBiryukov.
Fixes #58206.
Built from https://develop.svn.wordpress.org/trunk@55988
git-svn-id: http://core.svn.wordpress.org/trunk@55500 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-06-22 16:36:26 +02:00
|
|
|
if ( ! str_contains( $content, '[' ) ) {
|
2014-03-04 08:11:13 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-03-16 06:25:44 +01:00
|
|
|
if ( shortcode_exists( $tag ) ) {
|
2015-10-02 06:26:25 +02:00
|
|
|
preg_match_all( '/' . get_shortcode_regex() . '/', $content, $matches, PREG_SET_ORDER );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $matches ) ) {
|
2013-03-16 06:25:44 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-16 06:25:44 +01:00
|
|
|
|
|
|
|
foreach ( $matches as $shortcode ) {
|
2014-07-17 00:05:17 +02:00
|
|
|
if ( $tag === $shortcode[2] ) {
|
2013-03-16 06:25:44 +01:00
|
|
|
return true;
|
2014-07-17 19:38:13 +02:00
|
|
|
} elseif ( ! empty( $shortcode[5] ) && has_shortcode( $shortcode[5], $tag ) ) {
|
|
|
|
return true;
|
2014-07-17 00:05:17 +02:00
|
|
|
}
|
2013-03-16 06:25:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-10-12 14:47:21 +02:00
|
|
|
/**
|
|
|
|
* Returns a list of registered shortcode names found in the given content.
|
|
|
|
*
|
|
|
|
* Example usage:
|
|
|
|
*
|
|
|
|
* get_shortcode_tags_in_content( '[audio src="file.mp3"][/audio] [foo] [gallery ids="1,2,3"]' );
|
|
|
|
* // array( 'audio', 'gallery' )
|
|
|
|
*
|
|
|
|
* @since 6.3.2
|
|
|
|
*
|
|
|
|
* @param string $content The content to check.
|
|
|
|
* @return string[] An array of registered shortcode names found in the content.
|
|
|
|
*/
|
|
|
|
function get_shortcode_tags_in_content( $content ) {
|
|
|
|
if ( false === strpos( $content, '[' ) ) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
preg_match_all( '/' . get_shortcode_regex() . '/', $content, $matches, PREG_SET_ORDER );
|
|
|
|
if ( empty( $matches ) ) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
$tags = array();
|
|
|
|
foreach ( $matches as $shortcode ) {
|
|
|
|
$tags[] = $shortcode[2];
|
|
|
|
|
|
|
|
if ( ! empty( $shortcode[5] ) ) {
|
|
|
|
$deep_tags = get_shortcode_tags_in_content( $shortcode[5] );
|
|
|
|
if ( ! empty( $deep_tags ) ) {
|
|
|
|
$tags = array_merge( $tags, $deep_tags );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $tags;
|
|
|
|
}
|
|
|
|
|
2022-09-27 00:43:10 +02:00
|
|
|
/**
|
|
|
|
* Searches content for shortcodes and filter shortcodes through their hooks.
|
|
|
|
*
|
|
|
|
* This function is an alias for do_shortcode().
|
|
|
|
*
|
|
|
|
* @since 5.4.0
|
|
|
|
*
|
|
|
|
* @see do_shortcode()
|
|
|
|
*
|
|
|
|
* @param string $content Content to search for shortcodes.
|
|
|
|
* @param bool $ignore_html When true, shortcodes inside HTML elements will be skipped.
|
|
|
|
* Default false.
|
|
|
|
* @return string Content with shortcodes filtered out.
|
|
|
|
*/
|
|
|
|
function apply_shortcodes( $content, $ignore_html = false ) {
|
|
|
|
return do_shortcode( $content, $ignore_html );
|
|
|
|
}
|
|
|
|
|
2008-06-26 17:55:33 +02:00
|
|
|
/**
|
2022-06-28 22:37:15 +02:00
|
|
|
* Searches content for shortcodes and filter shortcodes through their hooks.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
|
|
|
* If there are no shortcode tags defined, then the content will be returned
|
|
|
|
* without any filtering. This might cause issues when plugins are disabled but
|
|
|
|
* the shortcode will still show up in the post or content.
|
|
|
|
*
|
2022-09-27 00:43:10 +02:00
|
|
|
* @since 2.5.0
|
2013-12-24 19:57:12 +01:00
|
|
|
*
|
2015-01-19 09:40:24 +01:00
|
|
|
* @global array $shortcode_tags List of shortcode tags and their callback hooks.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2019-12-21 21:12:03 +01:00
|
|
|
* @param string $content Content to search for shortcodes.
|
|
|
|
* @param bool $ignore_html When true, shortcodes inside HTML elements will be skipped.
|
|
|
|
* Default false.
|
2008-06-26 17:55:33 +02:00
|
|
|
* @return string Content with shortcodes filtered out.
|
|
|
|
*/
|
2022-09-27 00:43:10 +02:00
|
|
|
function do_shortcode( $content, $ignore_html = false ) {
|
2008-01-25 20:21:11 +01:00
|
|
|
global $shortcode_tags;
|
|
|
|
|
Code Modernization: Replace usage of `strpos()` with `str_contains()`.
`str_contains()` was introduced in PHP 8.0 to perform a case-sensitive check indicating if the string to search in (haystack) contains the given substring (needle).
WordPress core includes a polyfill for `str_contains()` on PHP < 8.0 as of WordPress 5.9.
This commit replaces `false !== strpos( ... )` with `str_contains()` in core files, making the code more readable and consistent, as well as better aligned with modern development practices.
Follow-up to [52039], [52040], [52326], [55703], [55710], [55987].
Props Soean, spacedmonkey, costdev, dingo_d, azaozz, mikeschroder, flixos90, peterwilsoncc, SergeyBiryukov.
Fixes #58206.
Built from https://develop.svn.wordpress.org/trunk@55988
git-svn-id: http://core.svn.wordpress.org/trunk@55500 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-06-22 16:36:26 +02:00
|
|
|
if ( ! str_contains( $content, '[' ) ) {
|
2014-03-04 08:11:13 +01:00
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $shortcode_tags ) || ! is_array( $shortcode_tags ) ) {
|
2008-04-25 02:43:44 +02:00
|
|
|
return $content;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-01-25 20:21:11 +01:00
|
|
|
|
2015-10-01 20:05:25 +02:00
|
|
|
// Find all registered tag names in $content.
|
2015-12-26 05:46:28 +01:00
|
|
|
preg_match_all( '@\[([^<>&/\[\]\x00-\x20=]++)@', $content, $matches );
|
2015-10-01 20:05:25 +02:00
|
|
|
$tagnames = array_intersect( array_keys( $shortcode_tags ), $matches[1] );
|
2015-07-22 07:15:25 +02:00
|
|
|
|
2015-10-01 20:05:25 +02:00
|
|
|
if ( empty( $tagnames ) ) {
|
2015-07-22 07:15:25 +02:00
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
2023-07-11 15:58:21 +02:00
|
|
|
// Ensure this context is only added once if shortcodes are nested.
|
2023-07-20 02:06:21 +02:00
|
|
|
$has_filter = has_filter( 'wp_get_attachment_image_context', '_filter_do_shortcode_context' );
|
2023-07-11 15:58:21 +02:00
|
|
|
$filter_added = false;
|
|
|
|
|
|
|
|
if ( ! $has_filter ) {
|
|
|
|
$filter_added = add_filter( 'wp_get_attachment_image_context', '_filter_do_shortcode_context' );
|
|
|
|
}
|
|
|
|
|
2015-10-01 20:05:25 +02:00
|
|
|
$content = do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames );
|
2015-07-22 07:15:25 +02:00
|
|
|
|
2015-10-01 20:05:25 +02:00
|
|
|
$pattern = get_shortcode_regex( $tagnames );
|
2015-10-02 06:26:25 +02:00
|
|
|
$content = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $content );
|
2015-08-17 23:39:25 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Always restore square braces so we don't break things like <!--[if IE ]>.
|
2015-07-22 07:15:25 +02:00
|
|
|
$content = unescape_invalid_shortcodes( $content );
|
2015-08-17 23:39:25 +02:00
|
|
|
|
2023-07-11 15:58:21 +02:00
|
|
|
// Only remove the filter if it was added in this scope.
|
|
|
|
if ( $filter_added ) {
|
|
|
|
remove_filter( 'wp_get_attachment_image_context', '_filter_do_shortcode_context' );
|
|
|
|
}
|
|
|
|
|
2015-07-22 07:15:25 +02:00
|
|
|
return $content;
|
2008-04-25 02:45:31 +02:00
|
|
|
}
|
|
|
|
|
2023-07-11 15:58:21 +02:00
|
|
|
/**
|
|
|
|
* Filter the `wp_get_attachment_image_context` hook during shortcode rendering.
|
|
|
|
*
|
|
|
|
* When wp_get_attachment_image() is called during shortcode rendering, we need to make clear
|
|
|
|
* that the context is a shortcode and not part of the theme's template rendering logic.
|
|
|
|
*
|
|
|
|
* @since 6.3.0
|
|
|
|
* @access private
|
|
|
|
*
|
|
|
|
* @return string The filtered context value for wp_get_attachment_images when doing shortcodes.
|
|
|
|
*/
|
|
|
|
function _filter_do_shortcode_context() {
|
|
|
|
return 'do_shortcode';
|
|
|
|
}
|
|
|
|
|
2008-06-26 17:55:33 +02:00
|
|
|
/**
|
2022-06-28 22:37:15 +02:00
|
|
|
* Retrieves the shortcode regular expression for searching.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
|
|
|
* The regular expression combines the shortcode tags in the regular expression
|
|
|
|
* in a regex class.
|
2009-03-18 03:43:45 +01:00
|
|
|
*
|
2011-09-05 21:08:15 +02:00
|
|
|
* The regular expression contains 6 different sub matches to help with parsing.
|
2009-03-18 03:43:45 +01:00
|
|
|
*
|
2011-10-12 18:50:30 +02:00
|
|
|
* 1 - An extra [ to allow for escaping shortcodes with double [[]]
|
2009-02-15 17:01:14 +01:00
|
|
|
* 2 - The shortcode name
|
|
|
|
* 3 - The shortcode argument list
|
|
|
|
* 4 - The self closing /
|
|
|
|
* 5 - The content of a shortcode when it wraps some content.
|
2011-10-12 18:50:30 +02:00
|
|
|
* 6 - An extra ] to allow for escaping shortcodes with double [[]]
|
2009-03-18 03:43:45 +01:00
|
|
|
*
|
2013-12-24 19:57:12 +01:00
|
|
|
* @since 2.5.0
|
2016-11-23 18:35:32 +01:00
|
|
|
* @since 4.4.0 Added the `$tagnames` parameter.
|
2013-12-24 19:57:12 +01:00
|
|
|
*
|
2015-05-27 21:39:25 +02:00
|
|
|
* @global array $shortcode_tags
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2016-11-23 18:35:32 +01:00
|
|
|
* @param array $tagnames Optional. List of shortcodes to find. Defaults to all registered shortcodes.
|
2008-06-26 17:55:33 +02:00
|
|
|
* @return string The shortcode search regular expression
|
|
|
|
*/
|
2015-10-01 20:05:25 +02:00
|
|
|
function get_shortcode_regex( $tagnames = null ) {
|
2008-04-25 02:45:31 +02:00
|
|
|
global $shortcode_tags;
|
2015-10-01 20:05:25 +02:00
|
|
|
|
|
|
|
if ( empty( $tagnames ) ) {
|
|
|
|
$tagnames = array_keys( $shortcode_tags );
|
|
|
|
}
|
2020-10-18 19:27:06 +02:00
|
|
|
$tagregexp = implode( '|', array_map( 'preg_quote', $tagnames ) );
|
2008-01-25 20:21:11 +01:00
|
|
|
|
Docs: Replace multiple single line comments with multi-line comments.
This changeset updates various comments as per WordPress PHP Inline Documentation Standards.
See https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#5-inline-comments.
Follow-up to [56174], [56175], [56176], [56177], [56178], [56179], [56180], [56191], [56192], [56193].
Props costdev, audrasjb.
See #58459.
Built from https://develop.svn.wordpress.org/trunk@56194
git-svn-id: http://core.svn.wordpress.org/trunk@55706 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-07-11 01:11:22 +02:00
|
|
|
/*
|
|
|
|
* WARNING! Do not change this regex without changing do_shortcode_tag() and strip_shortcode_tag().
|
|
|
|
* Also, see shortcode_unautop() and shortcode.js.
|
|
|
|
*/
|
2017-11-28 05:24:57 +01:00
|
|
|
|
|
|
|
// phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound -- don't remove regex indentation
|
2020-02-07 20:16:06 +01:00
|
|
|
return '\\[' // Opening bracket.
|
2020-01-29 01:45:18 +01:00
|
|
|
. '(\\[?)' // 1: Optional second opening bracket for escaping shortcodes: [[tag]].
|
|
|
|
. "($tagregexp)" // 2: Shortcode name.
|
|
|
|
. '(?![\\w-])' // Not followed by word character or hyphen.
|
|
|
|
. '(' // 3: Unroll the loop: Inside the opening shortcode tag.
|
|
|
|
. '[^\\]\\/]*' // Not a closing bracket or forward slash.
|
2011-10-12 18:50:30 +02:00
|
|
|
. '(?:'
|
2020-01-29 01:45:18 +01:00
|
|
|
. '\\/(?!\\])' // A forward slash not followed by a closing bracket.
|
|
|
|
. '[^\\]\\/]*' // Not a closing bracket or forward slash.
|
2011-10-12 18:50:30 +02:00
|
|
|
. ')*?'
|
|
|
|
. ')'
|
|
|
|
. '(?:'
|
2020-01-29 01:45:18 +01:00
|
|
|
. '(\\/)' // 4: Self closing tag...
|
|
|
|
. '\\]' // ...and closing bracket.
|
2011-10-12 18:50:30 +02:00
|
|
|
. '|'
|
2020-01-29 01:45:18 +01:00
|
|
|
. '\\]' // Closing bracket.
|
2011-10-12 18:50:30 +02:00
|
|
|
. '(?:'
|
2020-01-29 01:45:18 +01:00
|
|
|
. '(' // 5: Unroll the loop: Optionally, anything between the opening and closing shortcode tags.
|
|
|
|
. '[^\\[]*+' // Not an opening bracket.
|
2011-10-12 18:50:30 +02:00
|
|
|
. '(?:'
|
2020-01-29 01:45:18 +01:00
|
|
|
. '\\[(?!\\/\\2\\])' // An opening bracket not followed by the closing shortcode tag.
|
|
|
|
. '[^\\[]*+' // Not an opening bracket.
|
2011-10-12 18:50:30 +02:00
|
|
|
. ')*+'
|
|
|
|
. ')'
|
2020-01-29 01:45:18 +01:00
|
|
|
. '\\[\\/\\2\\]' // Closing shortcode tag.
|
2011-10-12 18:50:30 +02:00
|
|
|
. ')?'
|
|
|
|
. ')'
|
2024-02-22 16:53:13 +01:00
|
|
|
. '(\\]?)'; // 6: Optional second closing bracket for escaping shortcodes: [[tag]].
|
2017-11-28 05:24:57 +01:00
|
|
|
// phpcs:enable
|
2008-04-16 23:07:04 +02:00
|
|
|
}
|
2008-04-25 02:43:44 +02:00
|
|
|
|
2008-06-26 17:55:33 +02:00
|
|
|
/**
|
2022-09-27 00:43:10 +02:00
|
|
|
* Regular Expression callable for do_shortcode() for calling shortcode hook.
|
2017-12-01 00:11:00 +01:00
|
|
|
*
|
2020-10-05 16:03:02 +02:00
|
|
|
* @see get_shortcode_regex() for details of the match array contents.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2013-12-24 19:57:12 +01:00
|
|
|
* @since 2.5.0
|
2008-06-26 17:55:33 +02:00
|
|
|
* @access private
|
2015-05-27 21:39:25 +02:00
|
|
|
*
|
|
|
|
* @global array $shortcode_tags
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2023-05-03 20:48:22 +02:00
|
|
|
* @param array $m {
|
|
|
|
* Regular expression match array.
|
|
|
|
*
|
|
|
|
* @type string $0 Entire matched shortcode text.
|
|
|
|
* @type string $1 Optional second opening bracket for escaping shortcodes.
|
|
|
|
* @type string $2 Shortcode name.
|
|
|
|
* @type string $3 Shortcode arguments list.
|
|
|
|
* @type string $4 Optional self closing slash.
|
|
|
|
* @type string $5 Content of a shortcode when it wraps some content.
|
2024-02-22 16:53:13 +01:00
|
|
|
* @type string $6 Optional second closing bracket for escaping shortcodes.
|
2023-05-03 20:48:22 +02:00
|
|
|
* }
|
|
|
|
* @return string Shortcode output.
|
2008-06-26 17:55:33 +02:00
|
|
|
*/
|
2010-01-17 23:51:15 +01:00
|
|
|
function do_shortcode_tag( $m ) {
|
2008-01-25 20:21:11 +01:00
|
|
|
global $shortcode_tags;
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Allow [[foo]] syntax for escaping a tag.
|
2020-02-09 17:55:09 +01:00
|
|
|
if ( '[' === $m[1] && ']' === $m[6] ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
return substr( $m[0], 1, -1 );
|
2009-02-15 17:01:14 +01:00
|
|
|
}
|
2009-03-18 03:43:45 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$tag = $m[2];
|
2010-01-17 23:51:15 +01:00
|
|
|
$attr = shortcode_parse_atts( $m[3] );
|
2008-01-25 20:21:11 +01:00
|
|
|
|
2015-06-19 23:33:25 +02:00
|
|
|
if ( ! is_callable( $shortcode_tags[ $tag ] ) ) {
|
2021-06-15 17:22:58 +02:00
|
|
|
_doing_it_wrong(
|
|
|
|
__FUNCTION__,
|
|
|
|
/* translators: %s: Shortcode tag. */
|
|
|
|
sprintf( __( 'Attempting to parse a shortcode without a valid callback: %s' ), $tag ),
|
|
|
|
'4.3.0'
|
|
|
|
);
|
2015-06-19 23:33:25 +02:00
|
|
|
return $m[0];
|
|
|
|
}
|
|
|
|
|
2016-09-02 02:10:28 +02:00
|
|
|
/**
|
|
|
|
* Filters whether to call a shortcode callback.
|
|
|
|
*
|
2019-09-21 19:41:57 +02:00
|
|
|
* Returning a non-false value from filter will short-circuit the
|
2016-09-02 02:10:28 +02:00
|
|
|
* shortcode generation process, returning that value instead.
|
|
|
|
*
|
|
|
|
* @since 4.7.0
|
|
|
|
*
|
Code Modernization: Rename parameters that use reserved keywords in `phpunit/tests/shortcode.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit:
* Renames the `$return` parameter to `$output` in:
* `Tests_Shortcode::filter_pre_do_shortcode_tag_attr()`
* `Tests_Shortcode::filter_do_shortcode_tag_replace()`
* `Tests_Shortcode::filter_do_shortcode_tag_generate()`
* `Tests_Shortcode::filter_do_shortcode_tag_attr()`
* Amends the `$return` parameter of the `pre_do_shortcode_tag` filter for consistency.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215], [53216], [53220], [53230], [53232], [53236], [53239], [53240], [53242], [53243], [53245], [53246], [53257], [53269], [53270], [53271], [53272], [53273], [53274], [53275], [53276], [53277], [53281], [53283], [53284], [53285], [53287], [53364], [53365], [54927], [54929], [54930], [54931], [54932], [54933], [54938], [54943], [54944], [54945], [54946], [54947], [54948], [54950], [54951], [54952], [54956], [54959], [54960], [54961], [54962], [54964], [54965], [54969], [54970], [54971], [54972], [54996], [55000], [55011], [55013], [55014], [55015], [55016], [55017], [55020], [55021], [55023], [55027], [55028], [55034], [55036], [55037], [55038], [55039], [55049], [55050], [55060], [55062], [55064], [55065], [55076], [55077], [55078], [55081], [55090], [55100], [55104], [55112], [55115], [55116], [55117].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #56788.
Built from https://develop.svn.wordpress.org/trunk@55119
git-svn-id: http://core.svn.wordpress.org/trunk@54652 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-01-23 17:35:12 +01:00
|
|
|
* @param false|string $output Short-circuit return value. Either false or the value to replace the shortcode with.
|
2022-06-28 22:37:15 +02:00
|
|
|
* @param string $tag Shortcode name.
|
2023-05-03 20:48:22 +02:00
|
|
|
* @param array|string $attr Shortcode attributes array or the original arguments string if it cannot be parsed.
|
2022-06-28 22:37:15 +02:00
|
|
|
* @param array $m Regular expression match array.
|
2016-09-02 02:10:28 +02:00
|
|
|
*/
|
|
|
|
$return = apply_filters( 'pre_do_shortcode_tag', false, $tag, $attr, $m );
|
|
|
|
if ( false !== $return ) {
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
2016-10-04 02:39:37 +02:00
|
|
|
$content = isset( $m[5] ) ? $m[5] : null;
|
|
|
|
|
|
|
|
$output = $m[1] . call_user_func( $shortcode_tags[ $tag ], $attr, $content, $tag ) . $m[6];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Filters the output created by a shortcode callback.
|
|
|
|
*
|
|
|
|
* @since 4.7.0
|
|
|
|
*
|
2017-06-25 09:06:22 +02:00
|
|
|
* @param string $output Shortcode output.
|
2017-01-03 05:00:18 +01:00
|
|
|
* @param string $tag Shortcode name.
|
2023-05-03 20:48:22 +02:00
|
|
|
* @param array|string $attr Shortcode attributes array or the original arguments string if it cannot be parsed.
|
2017-01-03 05:00:18 +01:00
|
|
|
* @param array $m Regular expression match array.
|
2016-10-04 02:39:37 +02:00
|
|
|
*/
|
|
|
|
return apply_filters( 'do_shortcode_tag', $output, $tag, $attr, $m );
|
2008-01-25 20:21:11 +01:00
|
|
|
}
|
|
|
|
|
2015-07-22 07:15:25 +02:00
|
|
|
/**
|
2022-06-28 22:37:15 +02:00
|
|
|
* Searches only inside HTML elements for shortcodes and process them.
|
2015-07-22 07:15:25 +02:00
|
|
|
*
|
|
|
|
* Any [ or ] characters remaining inside elements will be HTML encoded
|
|
|
|
* to prevent interference with shortcodes that are outside the elements.
|
|
|
|
* Assumes $content processed by KSES already. Users with unfiltered_html
|
|
|
|
* capability may get unexpected output if angle braces are nested in tags.
|
|
|
|
*
|
|
|
|
* @since 4.2.3
|
|
|
|
*
|
2020-07-23 23:11:05 +02:00
|
|
|
* @param string $content Content to search for shortcodes.
|
|
|
|
* @param bool $ignore_html When true, all square braces inside elements will be encoded.
|
|
|
|
* @param array $tagnames List of shortcodes to find.
|
2015-07-22 07:15:25 +02:00
|
|
|
* @return string Content with shortcodes filtered out.
|
|
|
|
*/
|
2015-10-01 20:05:25 +02:00
|
|
|
function do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames ) {
|
2015-07-22 07:15:25 +02:00
|
|
|
// Normalize entities in unfiltered HTML before adding placeholders.
|
2017-12-01 00:11:00 +01:00
|
|
|
$trans = array(
|
|
|
|
'[' => '[',
|
|
|
|
']' => ']',
|
|
|
|
);
|
2015-07-22 07:15:25 +02:00
|
|
|
$content = strtr( $content, $trans );
|
2017-12-01 00:11:00 +01:00
|
|
|
$trans = array(
|
|
|
|
'[' => '[',
|
|
|
|
']' => ']',
|
|
|
|
);
|
2015-08-17 23:39:25 +02:00
|
|
|
|
2015-10-01 20:05:25 +02:00
|
|
|
$pattern = get_shortcode_regex( $tagnames );
|
2015-07-29 01:03:24 +02:00
|
|
|
$textarr = wp_html_split( $content );
|
2015-07-22 07:15:25 +02:00
|
|
|
|
|
|
|
foreach ( $textarr as &$element ) {
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( '' === $element || '<' !== $element[0] ) {
|
2015-07-22 07:15:25 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
Code Modernization: Replace usage of `strpos()` with `str_contains()`.
`str_contains()` was introduced in PHP 8.0 to perform a case-sensitive check indicating if the string to search in (haystack) contains the given substring (needle).
WordPress core includes a polyfill for `str_contains()` on PHP < 8.0 as of WordPress 5.9.
This commit replaces `false !== strpos( ... )` with `str_contains()` in core files, making the code more readable and consistent, as well as better aligned with modern development practices.
Follow-up to [52039], [52040], [52326], [55703], [55710], [55987].
Props Soean, spacedmonkey, costdev, dingo_d, azaozz, mikeschroder, flixos90, peterwilsoncc, SergeyBiryukov.
Fixes #58206.
Built from https://develop.svn.wordpress.org/trunk@55988
git-svn-id: http://core.svn.wordpress.org/trunk@55500 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-06-22 16:36:26 +02:00
|
|
|
$noopen = ! str_contains( $element, '[' );
|
|
|
|
$noclose = ! str_contains( $element, ']' );
|
2015-07-22 07:15:25 +02:00
|
|
|
if ( $noopen || $noclose ) {
|
|
|
|
// This element does not contain shortcodes.
|
|
|
|
if ( $noopen xor $noclose ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
// Need to encode stray '[' or ']' chars.
|
2015-07-22 07:15:25 +02:00
|
|
|
$element = strtr( $element, $trans );
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
Code Modernization: Replace usage of `substr()` with `str_starts_with()` and `str_ends_with()`.
`str_starts_with()` and `str_ends_with()` were introduced in PHP 8.0 to perform a case-sensitive check indicating if the string to search in (haystack) begins or ends with the given substring (needle).
WordPress core includes a polyfill for these functions on PHP < 8.0 as of WordPress 5.9.
This commit uses `str_starts_with()` and `str_ends_with()` in core files where appropriate:
* `$needle === substr( $string, 0, $length )`, where `$length` is the length of `$needle`, is replaced with `str_starts_with( $haystack, $needle )`.
* `$needle === substr( $string, $offset )`, where `$offset` is negative and the absolute value of `$offset` is the length of `$needle`, is replaced with `str_ends_with( $haystack, $needle )`.
This aims to make the code more readable and consistent, as well as better aligned with modern development practices.
Follow-up to [52039], [52040], [52326], [55703], [55710], [55987], [55988].
Props Soean, spacedmonkey, Clorith, ocean90, azaozz, sabernhardt, SergeyBiryukov.
Fixes #58220.
Built from https://develop.svn.wordpress.org/trunk@55990
git-svn-id: http://core.svn.wordpress.org/trunk@55502 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-06-22 16:57:24 +02:00
|
|
|
if ( $ignore_html || str_starts_with( $element, '<!--' ) || str_starts_with( $element, '<![CDATA[' ) ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
// Encode all '[' and ']' chars.
|
2015-07-22 07:15:25 +02:00
|
|
|
$element = strtr( $element, $trans );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$attributes = wp_kses_attr_parse( $element );
|
|
|
|
if ( false === $attributes ) {
|
2015-08-07 04:50:25 +02:00
|
|
|
// Some plugins are doing things like [name] <[email]>.
|
|
|
|
if ( 1 === preg_match( '%^<\s*\[\[?[^\[\]]+\]%', $element ) ) {
|
2015-10-02 06:26:25 +02:00
|
|
|
$element = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $element );
|
2015-08-07 04:50:25 +02:00
|
|
|
}
|
|
|
|
|
2024-02-11 20:14:19 +01:00
|
|
|
// Looks like we found some unexpected unfiltered HTML. Skipping it for confidence.
|
2015-07-22 07:15:25 +02:00
|
|
|
$element = strtr( $element, $trans );
|
|
|
|
continue;
|
|
|
|
}
|
2015-08-17 23:39:25 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Get element name.
|
2017-12-01 00:11:00 +01:00
|
|
|
$front = array_shift( $attributes );
|
|
|
|
$back = array_pop( $attributes );
|
2015-07-22 07:15:25 +02:00
|
|
|
$matches = array();
|
2017-12-01 00:11:00 +01:00
|
|
|
preg_match( '%[a-zA-Z0-9]+%', $front, $matches );
|
2015-07-22 07:15:25 +02:00
|
|
|
$elname = $matches[0];
|
2015-08-17 23:39:25 +02:00
|
|
|
|
2015-07-22 07:15:25 +02:00
|
|
|
// Look for shortcodes in each attribute separately.
|
|
|
|
foreach ( $attributes as &$attr ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$open = strpos( $attr, '[' );
|
2015-07-22 07:15:25 +02:00
|
|
|
$close = strpos( $attr, ']' );
|
|
|
|
if ( false === $open || false === $close ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
continue; // Go to next attribute. Square braces will be escaped at end of loop.
|
2015-07-22 07:15:25 +02:00
|
|
|
}
|
|
|
|
$double = strpos( $attr, '"' );
|
|
|
|
$single = strpos( $attr, "'" );
|
|
|
|
if ( ( false === $single || $open < $single ) && ( false === $double || $open < $double ) ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
/*
|
|
|
|
* $attr like '[shortcode]' or 'name = [shortcode]' implies unfiltered_html.
|
|
|
|
* In this specific situation we assume KSES did not run because the input
|
|
|
|
* was written by an administrator, so we should avoid changing the output
|
|
|
|
* and we do not need to run KSES here.
|
|
|
|
*/
|
2015-10-02 06:26:25 +02:00
|
|
|
$attr = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $attr );
|
2015-07-22 07:15:25 +02:00
|
|
|
} else {
|
Docs: Replace multiple single line comments with multi-line comments.
This changeset updates various comments as per WordPress PHP Inline Documentation Standards.
See https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#5-inline-comments.
Follow-up to [56174], [56175], [56176], [56177], [56178], [56179], [56180], [56191], [56192], [56193].
Props costdev, audrasjb.
See #58459.
Built from https://develop.svn.wordpress.org/trunk@56194
git-svn-id: http://core.svn.wordpress.org/trunk@55706 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-07-11 01:11:22 +02:00
|
|
|
/*
|
|
|
|
* $attr like 'name = "[shortcode]"' or "name = '[shortcode]'".
|
|
|
|
* We do not know if $content was unfiltered. Assume KSES ran before shortcodes.
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
$count = 0;
|
2015-10-02 06:26:25 +02:00
|
|
|
$new_attr = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $attr, -1, $count );
|
2015-07-22 07:15:25 +02:00
|
|
|
if ( $count > 0 ) {
|
|
|
|
// Sanitize the shortcode output using KSES.
|
|
|
|
$new_attr = wp_kses_one_attr( $new_attr, $elname );
|
2015-08-09 22:49:25 +02:00
|
|
|
if ( '' !== trim( $new_attr ) ) {
|
2015-07-22 07:15:25 +02:00
|
|
|
// The shortcode is safe to use now.
|
|
|
|
$attr = $new_attr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$element = $front . implode( '', $attributes ) . $back;
|
2015-08-17 23:39:25 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Now encode any remaining '[' or ']' chars.
|
2015-07-22 07:15:25 +02:00
|
|
|
$element = strtr( $element, $trans );
|
|
|
|
}
|
2015-08-17 23:39:25 +02:00
|
|
|
|
2015-07-22 07:15:25 +02:00
|
|
|
$content = implode( '', $textarr );
|
2015-08-17 23:39:25 +02:00
|
|
|
|
2015-07-22 07:15:25 +02:00
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-06-28 22:37:15 +02:00
|
|
|
* Removes placeholders added by do_shortcodes_in_html_tags().
|
2015-07-22 07:15:25 +02:00
|
|
|
*
|
|
|
|
* @since 4.2.3
|
|
|
|
*
|
|
|
|
* @param string $content Content to search for placeholders.
|
|
|
|
* @return string Content with placeholders removed.
|
|
|
|
*/
|
|
|
|
function unescape_invalid_shortcodes( $content ) {
|
2018-02-25 17:36:30 +01:00
|
|
|
// Clean up entire string, avoids re-parsing HTML.
|
|
|
|
$trans = array(
|
|
|
|
'[' => '[',
|
|
|
|
']' => ']',
|
|
|
|
);
|
2015-08-17 23:39:25 +02:00
|
|
|
|
2018-02-25 17:36:30 +01:00
|
|
|
$content = strtr( $content, $trans );
|
|
|
|
|
|
|
|
return $content;
|
2015-07-22 07:15:25 +02:00
|
|
|
}
|
|
|
|
|
2015-10-08 05:12:24 +02:00
|
|
|
/**
|
2022-06-28 22:37:15 +02:00
|
|
|
* Retrieves the shortcode attributes regex.
|
2015-10-08 05:12:24 +02:00
|
|
|
*
|
|
|
|
* @since 4.4.0
|
|
|
|
*
|
2022-06-28 22:37:15 +02:00
|
|
|
* @return string The shortcode attribute regular expression.
|
2015-10-08 05:12:24 +02:00
|
|
|
*/
|
|
|
|
function get_shortcode_atts_regex() {
|
2017-07-11 02:54:41 +02:00
|
|
|
return '/([\w-]+)\s*=\s*"([^"]*)"(?:\s|$)|([\w-]+)\s*=\s*\'([^\']*)\'(?:\s|$)|([\w-]+)\s*=\s*([^\s\'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|\'([^\']*)\'(?:\s|$)|(\S+)(?:\s|$)/';
|
2015-10-08 05:12:24 +02:00
|
|
|
}
|
|
|
|
|
2008-06-26 17:55:33 +02:00
|
|
|
/**
|
2022-06-28 22:37:15 +02:00
|
|
|
* Retrieves all attributes from the shortcodes tag.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
|
|
|
* The attributes list has the attribute name as the key and the value of the
|
|
|
|
* attribute as the value in the key/value pair. This allows for easier
|
|
|
|
* retrieval of the attributes, since all attributes have to be known.
|
|
|
|
*
|
2013-12-24 19:57:12 +01:00
|
|
|
* @since 2.5.0
|
2024-02-12 17:08:10 +01:00
|
|
|
* @since 6.5.0 The function now always returns an empty array,
|
|
|
|
* even if the original arguments string cannot be parsed or is empty.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2023-05-03 20:48:22 +02:00
|
|
|
* @param string $text Shortcode arguments list.
|
2024-02-12 17:08:10 +01:00
|
|
|
* @return array Array of attribute values keyed by attribute name.
|
|
|
|
* Returns empty array if there are no attributes
|
|
|
|
* or if the original arguments string cannot be parsed.
|
2008-06-26 17:55:33 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function shortcode_parse_atts( $text ) {
|
|
|
|
$atts = array();
|
2015-10-08 05:12:24 +02:00
|
|
|
$pattern = get_shortcode_atts_regex();
|
2019-10-15 21:36:02 +02:00
|
|
|
$text = preg_replace( "/[\x{00a0}\x{200b}]+/u", ' ', $text );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( preg_match_all( $pattern, $text, $match, PREG_SET_ORDER ) ) {
|
|
|
|
foreach ( $match as $m ) {
|
|
|
|
if ( ! empty( $m[1] ) ) {
|
|
|
|
$atts[ strtolower( $m[1] ) ] = stripcslashes( $m[2] );
|
|
|
|
} elseif ( ! empty( $m[3] ) ) {
|
|
|
|
$atts[ strtolower( $m[3] ) ] = stripcslashes( $m[4] );
|
|
|
|
} elseif ( ! empty( $m[5] ) ) {
|
|
|
|
$atts[ strtolower( $m[5] ) ] = stripcslashes( $m[6] );
|
|
|
|
} elseif ( isset( $m[7] ) && strlen( $m[7] ) ) {
|
|
|
|
$atts[] = stripcslashes( $m[7] );
|
|
|
|
} elseif ( isset( $m[8] ) && strlen( $m[8] ) ) {
|
|
|
|
$atts[] = stripcslashes( $m[8] );
|
|
|
|
} elseif ( isset( $m[9] ) ) {
|
|
|
|
$atts[] = stripcslashes( $m[9] );
|
|
|
|
}
|
2008-01-25 20:21:11 +01:00
|
|
|
}
|
2015-09-15 00:36:24 +02:00
|
|
|
|
2019-10-01 05:42:58 +02:00
|
|
|
// Reject any unclosed HTML elements.
|
2017-12-01 00:11:00 +01:00
|
|
|
foreach ( $atts as &$value ) {
|
Code Modernization: Replace usage of `strpos()` with `str_contains()`.
`str_contains()` was introduced in PHP 8.0 to perform a case-sensitive check indicating if the string to search in (haystack) contains the given substring (needle).
WordPress core includes a polyfill for `str_contains()` on PHP < 8.0 as of WordPress 5.9.
This commit replaces `false !== strpos( ... )` with `str_contains()` in core files, making the code more readable and consistent, as well as better aligned with modern development practices.
Follow-up to [52039], [52040], [52326], [55703], [55710], [55987].
Props Soean, spacedmonkey, costdev, dingo_d, azaozz, mikeschroder, flixos90, peterwilsoncc, SergeyBiryukov.
Fixes #58206.
Built from https://develop.svn.wordpress.org/trunk@55988
git-svn-id: http://core.svn.wordpress.org/trunk@55500 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-06-22 16:36:26 +02:00
|
|
|
if ( str_contains( $value, '<' ) ) {
|
2015-09-15 00:36:24 +02:00
|
|
|
if ( 1 !== preg_match( '/^[^<]*+(?:<[^>]*+>[^<]*+)*+$/', $value ) ) {
|
|
|
|
$value = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-01-25 20:21:11 +01:00
|
|
|
}
|
2019-10-01 05:42:58 +02:00
|
|
|
|
2008-01-25 20:21:11 +01:00
|
|
|
return $atts;
|
|
|
|
}
|
|
|
|
|
2008-06-26 17:55:33 +02:00
|
|
|
/**
|
2022-06-28 22:37:15 +02:00
|
|
|
* Combines user attributes with known attributes and fill in defaults when needed.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
|
|
|
* The pairs should be considered to be all of the attributes which are
|
|
|
|
* supported by the caller and given as a list. The returned attributes will
|
|
|
|
* only contain the attributes in the $pairs list.
|
|
|
|
*
|
|
|
|
* If the $atts list has unsupported attributes, then they will be ignored and
|
|
|
|
* removed from the final returned list.
|
|
|
|
*
|
2013-12-24 19:57:12 +01:00
|
|
|
* @since 2.5.0
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2015-05-27 21:39:25 +02:00
|
|
|
* @param array $pairs Entire list of supported attributes and their defaults.
|
|
|
|
* @param array $atts User defined attributes in shortcode tag.
|
2013-03-06 21:07:40 +01:00
|
|
|
* @param string $shortcode Optional. The name of the shortcode, provided for context to enable filtering
|
2008-06-26 17:55:33 +02:00
|
|
|
* @return array Combined and filtered attribute list.
|
|
|
|
*/
|
2013-03-06 21:07:40 +01:00
|
|
|
function shortcode_atts( $pairs, $atts, $shortcode = '' ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$atts = (array) $atts;
|
|
|
|
$out = array();
|
|
|
|
foreach ( $pairs as $name => $default ) {
|
|
|
|
if ( array_key_exists( $name, $atts ) ) {
|
|
|
|
$out[ $name ] = $atts[ $name ];
|
|
|
|
} else {
|
|
|
|
$out[ $name ] = $default;
|
|
|
|
}
|
2008-01-25 20:21:11 +01:00
|
|
|
}
|
2019-11-09 14:43:01 +01:00
|
|
|
|
2015-10-06 16:34:24 +02:00
|
|
|
if ( $shortcode ) {
|
2019-11-09 14:43:01 +01:00
|
|
|
/**
|
2020-01-19 14:41:08 +01:00
|
|
|
* Filters shortcode attributes.
|
2019-11-09 14:43:01 +01:00
|
|
|
*
|
|
|
|
* If the third parameter of the shortcode_atts() function is present then this filter is available.
|
|
|
|
* The third parameter, $shortcode, is the name of the shortcode.
|
|
|
|
*
|
|
|
|
* @since 3.6.0
|
|
|
|
* @since 4.4.0 Added the `$shortcode` parameter.
|
|
|
|
*
|
|
|
|
* @param array $out The output array of shortcode attributes.
|
|
|
|
* @param array $pairs The supported attributes and their defaults.
|
|
|
|
* @param array $atts The user defined shortcode attributes.
|
|
|
|
* @param string $shortcode The shortcode name.
|
|
|
|
*/
|
2015-10-06 16:34:24 +02:00
|
|
|
$out = apply_filters( "shortcode_atts_{$shortcode}", $out, $pairs, $atts, $shortcode );
|
|
|
|
}
|
2013-03-06 21:07:40 +01:00
|
|
|
|
2008-01-25 20:21:11 +01:00
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
2008-06-26 17:55:33 +02:00
|
|
|
/**
|
2022-06-28 22:37:15 +02:00
|
|
|
* Removes all shortcode tags from the given content.
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
2013-12-24 19:57:12 +01:00
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2015-05-27 21:39:25 +02:00
|
|
|
* @global array $shortcode_tags
|
2008-06-26 17:55:33 +02:00
|
|
|
*
|
|
|
|
* @param string $content Content to remove shortcode tags.
|
|
|
|
* @return string Content without shortcode tags.
|
2008-06-05 22:11:38 +02:00
|
|
|
*/
|
2008-06-26 17:55:33 +02:00
|
|
|
function strip_shortcodes( $content ) {
|
2008-06-05 22:11:38 +02:00
|
|
|
global $shortcode_tags;
|
|
|
|
|
Code Modernization: Replace usage of `strpos()` with `str_contains()`.
`str_contains()` was introduced in PHP 8.0 to perform a case-sensitive check indicating if the string to search in (haystack) contains the given substring (needle).
WordPress core includes a polyfill for `str_contains()` on PHP < 8.0 as of WordPress 5.9.
This commit replaces `false !== strpos( ... )` with `str_contains()` in core files, making the code more readable and consistent, as well as better aligned with modern development practices.
Follow-up to [52039], [52040], [52326], [55703], [55710], [55987].
Props Soean, spacedmonkey, costdev, dingo_d, azaozz, mikeschroder, flixos90, peterwilsoncc, SergeyBiryukov.
Fixes #58206.
Built from https://develop.svn.wordpress.org/trunk@55988
git-svn-id: http://core.svn.wordpress.org/trunk@55500 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-06-22 16:36:26 +02:00
|
|
|
if ( ! str_contains( $content, '[' ) ) {
|
2014-03-04 08:11:13 +01:00
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $shortcode_tags ) || ! is_array( $shortcode_tags ) ) {
|
2008-06-05 22:11:38 +02:00
|
|
|
return $content;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-06-05 22:11:38 +02:00
|
|
|
|
2015-10-01 20:05:25 +02:00
|
|
|
// Find all registered tag names in $content.
|
2015-12-26 05:46:28 +01:00
|
|
|
preg_match_all( '@\[([^<>&/\[\]\x00-\x20=]++)@', $content, $matches );
|
2016-10-23 16:25:31 +02:00
|
|
|
|
|
|
|
$tags_to_remove = array_keys( $shortcode_tags );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Filters the list of shortcode tags to remove from the content.
|
|
|
|
*
|
|
|
|
* @since 4.7.0
|
|
|
|
*
|
2018-08-02 17:13:27 +02:00
|
|
|
* @param array $tags_to_remove Array of shortcode tags to remove.
|
|
|
|
* @param string $content Content shortcodes are being removed from.
|
2016-10-23 16:25:31 +02:00
|
|
|
*/
|
|
|
|
$tags_to_remove = apply_filters( 'strip_shortcodes_tagnames', $tags_to_remove, $content );
|
|
|
|
|
|
|
|
$tagnames = array_intersect( $tags_to_remove, $matches[1] );
|
2015-10-01 20:05:25 +02:00
|
|
|
|
|
|
|
if ( empty( $tagnames ) ) {
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
$content = do_shortcodes_in_html_tags( $content, true, $tagnames );
|
2015-07-22 07:15:25 +02:00
|
|
|
|
2015-10-01 20:05:25 +02:00
|
|
|
$pattern = get_shortcode_regex( $tagnames );
|
2015-10-02 06:26:25 +02:00
|
|
|
$content = preg_replace_callback( "/$pattern/", 'strip_shortcode_tag', $content );
|
2008-06-05 22:11:38 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Always restore square braces so we don't break things like <!--[if IE ]>.
|
2015-07-22 07:15:25 +02:00
|
|
|
$content = unescape_invalid_shortcodes( $content );
|
2015-08-17 23:39:25 +02:00
|
|
|
|
2015-07-22 07:15:25 +02:00
|
|
|
return $content;
|
2011-10-12 18:50:30 +02:00
|
|
|
}
|
|
|
|
|
2015-05-27 21:39:25 +02:00
|
|
|
/**
|
2015-12-17 00:23:26 +01:00
|
|
|
* Strips a shortcode tag based on RegEx matches against post content.
|
2015-05-27 21:39:25 +02:00
|
|
|
*
|
2015-12-17 00:23:26 +01:00
|
|
|
* @since 3.3.0
|
|
|
|
*
|
|
|
|
* @param array $m RegEx matches against post content.
|
|
|
|
* @return string|false The content stripped of the tag, otherwise false.
|
2015-05-27 21:39:25 +02:00
|
|
|
*/
|
2011-10-12 18:50:30 +02:00
|
|
|
function strip_shortcode_tag( $m ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
// Allow [[foo]] syntax for escaping a tag.
|
2020-02-09 17:55:09 +01:00
|
|
|
if ( '[' === $m[1] && ']' === $m[6] ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
return substr( $m[0], 1, -1 );
|
2011-10-12 18:50:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $m[1] . $m[6];
|
2008-06-05 22:11:38 +02:00
|
|
|
}
|