Changeset 53981 for branches/4.2/src/wp-includes/post-template.php
- Timestamp:
- 08/30/2022 03:51:33 PM (3 years ago)
- Location:
- branches/4.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.2
- Property svn:mergeinfo changed
/trunk merged: 53958-53960
- Property svn:mergeinfo changed
-
branches/4.2/src/wp-includes/post-template.php
r45961 r53981 923 923 * Display list of post custom fields. 924 924 * 925 * @internal This will probably change at some point...926 925 * @since 1.2.0 926 * 927 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually. 927 928 */ 928 929 function the_meta() { 930 _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' ); 929 931 if ( $keys = get_post_custom_keys() ) { 930 932 echo "<ul class='post-meta'>\n"; … … 945 947 * @param string $value Meta value. 946 948 */ 947 echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'> $key:</span> $value</li>\n", $key, $value );949 echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span>" . esc_html( $value ) . "</li>\n", $key, $value ); 948 950 } 949 951 echo "</ul>\n";
Note: See TracChangeset
for help on using the changeset viewer.