Template tag, the_meta , has no parameters currently.
Please add a parameter so that the_meta can EXCLUDE a particular Key-Value.
It could be something like, php the_meta(exclue="Small-image")
REASONING AND EXAMPLE:
the_meta will display all the custom fields on a post. It will display them as Key - Value pairs. For example I could make my post display:
My Mood: Happy
The Weather Is: Sunshine
The song of the day is: "You Are My Sunshine"
Small-image: http://mysite.com/wordpress/wp-content/november-sun.jpg
In my example I want the_meta to show all the custom fields EXCEPT for "small-image".
The other custom fields are intended for public display, but I use one of my custom fields for some code-like info that I don't want to display in writing on the blog where I put the_meta.
Adding this parameter would be backwards compatible with older WP. The old way of putting the_meta() would still work fine.