Change the unsubscribe link text in emails

📅 Published on

📝 Last updated

Documentation

»

Code Samples

»

Change the unsubscribe link text in emails

Changes the text of the unsubscribe link.

/**
  * Change "Unsubscribe" in footer
  *
  * @param $text string 
  * @return $text string
  * * * * * * * * * * * * * * * * * * */
function gh_change_unsubscribe( $text ) {

    $text = str_ireplace( "Unsubscribe", "Custom link text",  $text );

    return $text;
}
add_filter( 'gettext', 'gh_change_unsubscribe' );

Was this helpful?

Let us know if this document answered your question. That’s the only way we can improve.