Docs: Correct parameter name in `strip_shortcodes_tagnames` filter DocBlock.
Props uttam007. Fixes #44691. Built from https://develop.svn.wordpress.org/trunk@43549 git-svn-id: http://core.svn.wordpress.org/trunk@43378 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9e2e491f1f
commit
70bc51e46f
|
@ -609,7 +609,7 @@ function strip_shortcodes( $content ) {
|
||||||
*
|
*
|
||||||
* @since 4.7.0
|
* @since 4.7.0
|
||||||
*
|
*
|
||||||
* @param array $tag_array Array of shortcode tags to remove.
|
* @param array $tags_to_remove Array of shortcode tags to remove.
|
||||||
* @param string $content Content shortcodes are being removed from.
|
* @param string $content Content shortcodes are being removed from.
|
||||||
*/
|
*/
|
||||||
$tags_to_remove = apply_filters( 'strip_shortcodes_tagnames', $tags_to_remove, $content );
|
$tags_to_remove = apply_filters( 'strip_shortcodes_tagnames', $tags_to_remove, $content );
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.0-alpha-43548';
|
$wp_version = '5.0-alpha-43549';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue