Docs: Correct description for wp_filter_content_tags() per the documentation standards.

DocBlocks should start with a brief, one sentence explanation of the purpose of the function spanning a maximum of two lines.

Follow-up to [48648].

See #44427.
Built from https://develop.svn.wordpress.org/trunk@48649


git-svn-id: http://core.svn.wordpress.org/trunk@48411 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-07-27 21:49:04 +00:00
parent 000086828f
commit 5d21bc9386
2 changed files with 7 additions and 5 deletions

View File

@ -1705,10 +1705,12 @@ function wp_lazy_loading_enabled( $tag_name, $context ) {
}
/**
* Modifies specific HTML tags in post content to include new browser and HTML technologies
* that may not have existed at the time of post creation. These modifications currently include
* adding `srcset`, `sizes`, and `loading` attributes to `img` HTML tags. Future similar
* optimizations should be added/expected here.
* Filters specific tags in post content and modifies their markup.
*
* Modifies HTML tags in post content to include new browser and HTML technologies
* that may not have existed at the time of post creation. These modifications currently
* include adding `srcset`, `sizes`, and `loading` attributes to `img` HTML tags.
* Future similar optimizations should be added/expected here.
*
* @since 5.5.0
*

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.5-beta4-48648';
$wp_version = '5.5-beta4-48649';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.