div id="idTexpanel" Appearing in Theme
-
I am writing a custom theme and when I was looking at some of it in the browser, I noticed that it is inserting
<div id="idTextPanel">
around the post content.The code I have for the theme is s follows:
<section class="postbody"> <?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } the_content(); ?> </section>
But what I am getting is:
<section class="postbody"> <div id="idTextPanel"> <p>Lorem ipsum...</p> </div> </section>
I know this is not being generated by a plug-in as all I have installed are Hello Dolly and Akismet and neither is active at the moment.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘div id="idTexpanel" Appearing in Theme’ is closed to new replies.