How to display value of custom fields in page
Well, you are using: get_post_meta(get_the_ID(), ‘subtitle’, TRUE); So, you are saying to WordPress to get the meta value of the ‘subtitle’ field and that the returned value be in format of string. See get_post_meta() docu. To get all meta data of a post you should use get_post_custom() function instead. For example, if you are inside … Read more