I want to change in theme-options.php
$theme_defaults = array(
‘theme_max_posts’=>5,
‘theme_read_more’=>’Read More’,
‘theme_pre_message’=>’This email has been sent to {email} because subscribed and confirmed on ‘ . get_option(‘blogname’) . ‘.<a href=”{profile_url}”>Click here to modify you subscription or unsubscribe</a>.’,
‘theme_categories’=>array()
);
So that it reads on two lines:
This email has been sent to {email} because subscribed and confirmed on TEAM HankFit247 Blog.
Click here to modify you subscription or unsubscribe.
I know in HTML it is simply <br> but I don’t know how to state that in php.
Thanks!