Docs: Correct parameter name in `strip_shortcodes_tagnames` filter DocBlock.

Props uttam007.
Fixes #44691.

git-svn-id: https://develop.svn.wordpress.org/trunk@43549 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2018-08-02 15:12:56 +00:00
parent c29d019762
commit e26a5d64d1
1 changed files with 2 additions and 2 deletions

View File

@ -609,8 +609,8 @@ 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 );