In WordPress when i publish a post with HTML code is converted to text.
I checked the template page and there is following code:
<?php echo apply_filters('the_content',et_create_dropcaps(get_the_content())
);
?>
instead of:
<div class="entry">
</div>
How can I make sure that when I write a HTML code will be converted to output, not to text?!
Thank you! and sorry for my weak english!