Note: I discovered this problem on one other site using the same theme, but still others are not affected.
In functions.php there is nothing striping slashes, however in elite-funtions.php i found this:
Code:
/* Show analytics code in footer */
/* ---------------------------------------------------------------------------------- */
function elite_childtheme_analytics() {
$output = elite_get_option('elite_analytics');
if ($output <> "")
echo stripslashes($output);
}
add_action('wp_head', 'elite_childtheme_analytics');
Bookmarks