• Resolved d3si6ner

    (@d3si6ner)


    Hi, I’m working in a blog and I’m figuring out how to make a Tableless theme; I’m crazy with this problem.

    in archive.php appear the code:

    <div class=”entry”>
    <?php the_content() ?>
    </div>

    that’s OK for the moment, but why any post appear inside a unnecessary and ugly table? every single post appear with the format:

    <div class=”entry”>
    <table>
    <tr>
    <td>

    …(content of the post)…

    </td>
    </tr>
    </table>
    </div>

    I would like to have only the div “entry” and the post content inside… is that posible?.

    pleasee help meee!

    Kenny

Viewing 2 replies - 1 through 2 (of 2 total)
  • As far as I know, the_content() doesn’t come with any special formatting like tables.

    If I do this:

    <div id="entry">
    the_content();
    </div>

    …all I get is the content inside a single div.

    Can you link to an example of the problem you’re having?

    Thread Starter d3si6ner

    (@d3si6ner)

    problem solved!! thank you asechrest for your reply. The problem was a plugin called “wp-insert” (by Namith Jawahar.) that plugin did the mess. I uninstalled it and now the blog is working very good. thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to make tableless “the_content()” ?’ is closed to new replies.