I needed a way to get the first letter of the post title without requiring a custom field. An example of its use can be seen on the First Initial Post Card.
<?php
function first_letter_shortcode() {
$title = get_the_title();
return substr($title, 0, 1);
}
add_shortcode('first_letter', 'first_letter_shortcode');


