Changeset 53977 for branches/4.6/src/wp-includes/post-template.php
- Timestamp:
- 08/30/2022 03:47:30 PM (4 years ago)
- Location:
- branches/4.6
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-includes/post-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.6
- Property svn:mergeinfo changed
/trunk merged: 53958-53960
- Property svn:mergeinfo changed
-
branches/4.6/src/wp-includes/post-template.php
r45956 r53977 976 976 * @since 1.2.0 977 977 * 978 * @internal This will probably change at some point... 979 * 978 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually. 980 979 */ 981 980 function the_meta() { 981 _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' ); 982 982 if ( $keys = get_post_custom_keys() ) { 983 983 echo "<ul class='post-meta'>\n"; … … 998 998 * @param string $value Meta value. 999 999 */ 1000 echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'> $key:</span> $value</li>\n", $key, $value );1000 echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span>" . esc_html( $value ) . "</li>\n", $key, $value ); 1001 1001 } 1002 1002 echo "</ul>\n";
Note: See TracChangeset
for help on using the changeset viewer.