Thursday, February 12, 2026 | Good evening!

FlyingWPress

Get the First Letter of the Post Title

Get the First Letter of the Post Title

April 15, 2023

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');

Leave a Reply

Featured