Changeset 53973 for branches/5.0/src/wp-includes/post-template.php
- Timestamp:
- 08/30/2022 03:42:45 PM (3 years ago)
- Location:
- branches/5.0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0
- Property svn:mergeinfo changed
/trunk merged: 52412,53958-53960
- Property svn:mergeinfo changed
-
branches/5.0/src/wp-includes/post-template.php
r45945 r53973 1004 1004 * @since 1.2.0 1005 1005 * 1006 * @internal This will probably change at some point... 1007 * 1006 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually. 1008 1007 */ 1009 1008 function the_meta() { 1009 _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' ); 1010 1010 if ( $keys = get_post_custom_keys() ) { 1011 1011 echo "<ul class='post-meta'>\n"; … … 1021 1021 $html = sprintf( "<li><span class='post-meta-key'>%s</span> %s</li>\n", 1022 1022 /* translators: %s: Post custom field name */ 1023 sprintf( _x( '%s:', 'Post custom field name' ), $key),1024 $value1023 esc_html( sprintf( _x( '%s:', 'Post custom field name' ), $key ) ), 1024 esc_html( $value ) 1025 1025 ); 1026 1026
Note: See TracChangeset
for help on using the changeset viewer.