Adding subtitle to your wordpress post

Adding subtitle to your wordpress post For adding post subtitle simple place the below code in your theme template or wherever you like. <?php { $subtitle = get_post_meta ($post->ID, ‘subtitle’, $single = true); if($subtitle !== ”) echo $subtitle;} ?> After this you have to go to your post then create a custom field named “subtitle” …