Forum Moderators: coopster
I'm trying to echo a ul/li list of custom fields with the key name "qr". Here's what I've come up with, but it doesn't seem to be working:
<?php
$qr_values = get_post_custom_values('qr');
foreach ( $qr_values as $key => $value ) {
echo "$key => $value ('qr')<br />";
}
?>
I'm basing it on the contents of this page:
[codex.wordpress.org...]
Could anyone help me out?
Thanks again!
- B