Changeset 51382 for branches/5.8/src/wp-includes/deprecated.php
- Timestamp:
- 07/08/2021 05:27:27 PM (4 years ago)
- Location:
- branches/5.8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.8
- Property svn:mergeinfo changed
/trunk merged: 51348,51375
- Property svn:mergeinfo changed
-
branches/5.8/src/wp-includes/deprecated.php
r50810 r51382 4208 4208 wp_strict_cross_origin_referrer(); 4209 4209 } 4210 4211 /** 4212 * Render inner blocks from the `core/columns` block for generating an excerpt. 4213 * 4214 * @since 5.2.0 4215 * @deprecated 5.8.0 4216 * 4217 * @access private 4218 * 4219 * @param array $columns The parsed columns block. 4220 * @param array $allowed_blocks The list of allowed inner blocks. 4221 * @return string The rendered inner blocks. 4222 */ 4223 function _excerpt_render_inner_columns_blocks( $columns, $allowed_blocks ) { 4224 _deprecated_function( __FUNCTION__, '5.8.0', '_excerpt_render_inner_blocks()' ); 4225 return _excerpt_render_inner_blocks( $columns, $allowed_blocks ); 4226 }
Note: See TracChangeset
for help on using the changeset viewer.