Changeset 53982 for branches/4.1/src/wp-includes/post-template.php
- Timestamp:
- 08/30/2022 03:53:03 PM (3 years ago)
- Location:
- branches/4.1
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-includes/post-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.1
- Property svn:mergeinfo changed
/trunk merged: 53958-53960
- Property svn:mergeinfo changed
-
branches/4.1/src/wp-includes/post-template.php
r45962 r53982 890 890 * Display list of post custom fields. 891 891 * 892 * @internal This will probably change at some point...893 892 * @since 1.2.0 893 * 894 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually. 894 895 */ 895 896 function the_meta() { 897 _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' ); 896 898 if ( $keys = get_post_custom_keys() ) { 897 899 echo "<ul class='post-meta'>\n"; … … 912 914 * @param string $value Meta value. 913 915 */ 914 echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'> $key:</span> $value</li>\n", $key, $value );916 echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span>" . esc_html( $value ) . "</li>\n", $key, $value ); 915 917 } 916 918 echo "</ul>\n";
Note: See TracChangeset
for help on using the changeset viewer.