Changeset 53970 for branches/5.3/src/wp-includes/post-template.php
- Timestamp:
- 08/30/2022 03:37:18 PM (3 years ago)
- Location:
- branches/5.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.3
- Property svn:mergeinfo changed
/trunk merged: 52412,53958-53960
- Property svn:mergeinfo changed
-
branches/5.3/src/wp-includes/post-template.php
r46451 r53970 1082 1082 * @since 1.2.0 1083 1083 * 1084 * @ internal This will probably change at some point...1084 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually. 1085 1085 */ 1086 1086 function the_meta() { 1087 _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' ); 1087 1088 $keys = get_post_custom_keys(); 1088 1089 if ( $keys ) { … … 1100 1101 "<li><span class='post-meta-key'>%s</span> %s</li>\n", 1101 1102 /* translators: %s: Post custom field name. */ 1102 sprintf( _x( '%s:', 'Post custom field name' ), $key),1103 $value1103 esc_html( sprintf( _x( '%s:', 'Post custom field name' ), $key ) ), 1104 esc_html( $value ) 1104 1105 ); 1105 1106
Note: See TracChangeset
for help on using the changeset viewer.