• Is there a way to capitalize meta descriptions (published date, authors name, post count etc.) from within the Customizer or Typography options?

    Thank you!

Viewing 1 replies (of 1 total)
  • Hi,

    You can use the text-transform: capitalize; CSS property.

    Example:

    .author-name{
    text-transform: capitalize;
    }

    Or you can do a blanket selection that applies to everything inside .entry-meta.

    .entry-meta * {
        text-transform: capitalize;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How to capitalize meta descriptions?’ is closed to new replies.