views:

21

answers:

1

I am designing a website in wordpress. I have 3 boxes on the home page and I have widgeted them. Now I want to add their image, text, heading, and "read more" links. I have searched for a plugin to do this without success. I want to know about a plugin which can add image, text, and a read more link (button) to posts.

A: 

I've accomplished what you are trying to do by just displaying a page's content inside of the box. You create 3 pages that you use for the boxes and can use the standard page editing tools in WordPress to add text, images, etc.

To load a specific page, just add code in each box to pull the content from a specific page. In the example code below, you would change the "page_id" in the first line to the page id of the page you wanted to display. Do this in each box on your homepage.

<?php
    query_posts('page_id=7');
    while (have_posts()) : the_post();
        the_content();
    endwhile;
?>
insomniak29