これが非常に基本的なものである場合は申し訳ありません。Wordpress でカスタム フィールドを作成し、以下を使用して各製品ページにフィールドを表示しました。順序付けられていないリストのように、それらを別々の行に表示する方法を見つけるのに苦労しています。
<div id="customfield-meta">
<?php
// Display Custom Field Value
echo get_post_meta( $post->ID, ' Model_Released', true );
echo get_post_meta( $post->ID, ' Property_Released', true );
echo get_post_meta( $post->ID, 'Catalogue_Number', true );
?>
</div> <!-- end #customfield-meta -->