I am using wordpress as blog on my website n wana display updates on home page regarding new posts on blog, plz provide me code or suggest if wordpress has this type of plugin or something like that?
should I use Entries (RSS) feeds to display them on my home page? but how? my website is in php where I wana display these updates the following code is covers the area: <div class="topbox"> <h3 class="boxheader"><font color="red">Blog Updates</font></h3> </div> <div class="middlebox"> </div> <div class="bottombox"> </div>
This code will display a bulleted list of your titles. You can change the number 10 to how many you want. <ul> <?php get_archives('postbypost', 10); ?> </ul>
I think your referring to the "recent posts" widget.. you can go there by logging in wordpress>> then click on "widgets" >>> then just drag and drop the "recent post widget"
I tried but still not getting the results. Ok here you go: Example: abcd123.com/blog I want to show the entries/posts on: abcd123.com at any location of page like left side of page etc what to do now?