WordPress get get_option() data as plain HTML

If you want to get WordPress get_option() data as plain HTML without any extra ‘/’ or ‘”‘ then you must need to use this function.

$NewData = stripslashes( html_entity_decode(get_option('YourOptionHere'), ENT_QUOTES, 'UTF-8') );