Hey there dylino,
How are you doing today?
Could you please explain what you’re trying to change with that text? Also post link to your site so I can take a look 🙂
Cheers,
Bojan
@dylino: Yes , the input values gets sanitize before going into the DB.
This is WordPress fundamantle and that is the reason we use the sanitize_text_field
This function usually skips the HTML tags and formats.
Thanks
I was able to hack up a workaround for this…
In the Site Description field I used |br| where I wanted BRs added and then changed index-site-info.php page with the following line:
<p><?php echo str_replace("|br|","<br>",$theme_options['site_intro_text']); ?></p>
Works well for my project… hope it helps for you!