• https://staged02.webeclectic.com/

    This theme doe not allow the content to show on the home page so I pasted this into the page template.

    <div class="home-post">
    <?php $id=4; $post = get_page($id); echo $post->post_content;  ?>
    </div>

    Is this proper?
    Why doesn’t the paragraph spacing not work?

Viewing 1 replies (of 1 total)
  • Thread Starter jknetdesign

    (@jknetdesign)

    I used this instead, it works.

    <?php
    $id=4;
    $post = get_page($id);
    $content = apply_filters('the_content', $post->post_content);
    echo $content;
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘Paragraph Spacing’ is closed to new replies.