• Resolved mortgage_master

    (@mortgage_master)


    Is there a way to embed a blog page into the bottom of the home page. Rather than having just a bunch of posts on the first page, which are extremely important, I want to have some type of welcome page, with the posts below that.

    Any suggestions would be appreciated.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Yes. You could edit index.php and add your text to the template inside an <?php if( is_home() && !is_paged() ) :?> ... <?php endif;?> loop.

    Or you could widgetize your index.php file and add your welcome text via a Text widget.

    Or you could place the welcome text in a WordPress Page and then call that Page into index.php using query_posts.

    Thread Starter mortgage_master

    (@mortgage_master)

    OK. Thank you Esmi. The next question relating to this would be: How can I just display post summaries, versus seeing the complete the entire blog post of each of the posts that are displayed.

    Use the_excerpt() instead of the_content().

    Thread Starter mortgage_master

    (@mortgage_master)

    Once again, thank you. I have tried “the_excerpt” blip above and got it to work successfully. I am really leery of editing some of these file, as a little knowledge, versus a lot of it, can be dangerous, but I find if I take my time, I can get through this. Backups help too. lol.

    Backups help too

    Amen to that! I never edit files online. I prefer to make amendments offline and FTP the changes files onto the server. That way, I always have a copy of the working version that I can revert to when (not “if”) I break something.

    Thread Starter mortgage_master

    (@mortgage_master)

    OK, now I am noticing that the blog summaries appear as I has wished, but there is no way to see the full version. Is there something in the code that will enable it to show the full version on another page, perhaps via a link?

    Thread Starter mortgage_master

    (@mortgage_master)

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Blog Postings at bottom of Home Page’ is closed to new replies.