/**
* Displays a list of post custom fields.
*
* @since 1.2.0
*
* @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually.
*/
function the_meta() { _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()'
);
$keys =
get_post_custom_keys();
if ( $keys ) { $li_html = '';
foreach ( (array) $keys as $key ) { $keyt =
trim( $key );
if ( is_protected_meta( $keyt, 'post'
) ) { continue;
} $values =
array_map( 'trim',
get_post_custom_values( $key ) );
$value =
implode( ', ',
$values );