Site logo

[Resolved] How to rename the "by" in post section GeneratePress

Home Forums Support [Resolved] How to rename the "by" in post section GeneratePress

Home Forums Support How to rename the "by" in post section GeneratePress

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #590021
    pancakebg

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

    #590310
    Tom
    Lead Developer
    Lead Developer

    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 🙂

    #590507
    pancakebg

    Works great as always.

    Thank you!

    #590510
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.