mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-06 21:54:28 +00:00
Introduce [audio] and [video] shortcodes, and use MediaElement.js to play them.
props wonderboymusic. see #23282. git-svn-id: https://develop.svn.wordpress.org/trunk@23729 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -127,6 +127,44 @@ function remove_all_shortcodes() {
|
||||
$shortcode_tags = array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Whether a registered shortcode exists named $tag
|
||||
*
|
||||
* @since 3.6.0
|
||||
*
|
||||
* @global array $shortcode_tags
|
||||
* @param string $tag
|
||||
* @return boolean
|
||||
*/
|
||||
function shortcode_exists( $tag ) {
|
||||
global $shortcode_tags;
|
||||
return array_key_exists( $tag, $shortcode_tags );
|
||||
}
|
||||
|
||||
/**
|
||||
* Whether the passed content contains the specified shortcode
|
||||
*
|
||||
* @since 3.6.0
|
||||
*
|
||||
* @global array $shortcode_tags
|
||||
* @param string $tag
|
||||
* @return boolean
|
||||
*/
|
||||
function has_shortcode( $content, $tag ) {
|
||||
if ( shortcode_exists( $tag ) ) {
|
||||
$matches = array();
|
||||
preg_match_all( '/' . get_shortcode_regex() . '/s', $content, $matches, PREG_SET_ORDER );
|
||||
if ( empty( $matches ) )
|
||||
return false;
|
||||
|
||||
foreach ( $matches as $shortcode ) {
|
||||
if ( $tag === $shortcode[2] )
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Search content for shortcodes and filter shortcodes through their hooks.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user