Code-Snippets-Functions/Execute a function on a child site/MailPoet/customize-your-unsubscribe-page.txt

7 lines
338 B
Text

add_filter( 'mailpoet_unsubscribe_confirmation_page', 'mp_modify_unsubscribe_confirmation_page', 10, 2);
function mp_modify_unsubscribe_confirmation_page( $HTML, $unsubscribeUrl ) {
$HTML = '<hr>';
$HTML .= '<center>You can <a href="'.$unsubscribeUrl.'">click here</a> to unsubscribe.</center>';
$HTML .= '<hr>';
return $HTML;
}