Home › Forums › Support › How to rename the "by" in post section GeneratePress This topic has 3 replies, 2 voices, and was last updated 7 years, 9 months ago by Tom. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts June 2, 2018 at 4:46 am #590021 pancakebg Hey guys, is there a way to rename the “By” in posts? June 2, 2018 at 11:28 am #590310 TomLead 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 🙂 June 2, 2018 at 8:55 pm #590507 pancakebg Works great as always. Thank you! June 2, 2018 at 8:58 pm #590510 TomLead Developer Lead Developer You’re welcome 🙂 Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In