function sc_post_custom_func( $atts, $content = null ) {
extract( shortcode_atts( array(
'key' => '',
'separator' => ', ',
), $atts ));
if ( is_array(post_custom($key)) ) {
return implode($separator,post_custom($key));
} else {
return post_custom($key);
}
}
add_shortcode( 'sc_post_custom', 'sc_post_custom_func' );
詳細はカスタムフィールドのデータ表示を参照。