Site logo

Archived topic

How to rename the "by" in post section GeneratePress

3 replies · Started by pancakebg on June 2, 2018

Viewing posts 1–4 of 4

Hey guys, is there a way to rename the "By" in posts?

Hi there,

Give this function a try:

add_filter( 'gettext', 'tu_change_by_text', 20, 3 );
function tu_change_by_text( $translated_text ) {
    if ( 'by' === $translated_text ) {
        $translated_text = 'Your text here';
    }

    return $translated_text;
}

Let me know :)

Works great as always.

Thank you!

You're welcome :)

This archived topic is closed to new replies.