So Long story short, im working on a custom theme and wrapping the WP hooks onto said theme etc and i noticed that, When writing a post/page etc, that say for example i want to make a word bold/italic etc, That applied styles dont come through.
So for example, say i select a word, click the "B" icon to make the word bold, its visually displays the word as bold on the editor but when i save and preview the page, the text is normal. There are no visible stylings on the word whatsoever.
I also tried to go into the HTML pane, and apply the html tags manually like
<b></b> or <i></i> etc and, the same thing, i save and preview page and the text appears as if no style was apply.
Any ideas as to whats going on? Probably something im missing? Any Tips, links etc i humbly appreciate.
Thanks in advanced.
***edit: this is my current wp post loop
<?php
while( have_posts() ) : the_post() ?>
<div class="post">
<h3 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="entry-content"><?php the_post(); ?></div>
<div class="entry-content"><?php the_content(); ?></div>
</div>
<?php endwhile; ?>
