If you have been here before, you may notice a little change in the Sidebar. In the top section for Newest Blog Posts there has been links to recent posts, but it was just the Titles. Nothing to let readers know what the posts were about other than a few words.
I have tried various ways to enhance the description but have always fallen short of what I wanted to give readers as a preview. Using a combination of 2 different plugins, I still could only come up with one excerpt for the newest post, but had to rely on the old fashioned Title for the rest of the current posts.
I finally found a plugin, SimplePie Plugin for WordPress, through the recommendation of a friend and thought I may as well try it because no combination of plugins would give me what I wanted.
It works really well, but they make it a little more complicated to get the download(s) than is necessary. When you get to the landing page, you download their .zip file, but it is only one of 2 that you need to run the php. You have to go to the “download” in the top navigation bar and download another .zip file separately in order for the plugin to work.
After unzipping both files (separately and in different folders) the one for the actual php file (simplepie_wordpress.php) is easy enough to find and upload from the 1.2.1 folder. The other file you need is the library of information to allow the whole thing to function. The file (simplepie.inc) in the 1.0.1 folder is a little more difficult to find because it is mixed in with a lot of files you don’t need for anything (unless you like to read). Once you find the .INC file, it is also easy to upload.
Then you have to create an empty folder, cache, to use as a holding place for the current information (new posts).
If they put everything you need in one download, it would be a lot simpler to install.
Once you get through the ordeal of this process, the rest is easy.
After you upload the 2 files and create the cache folder in your wp/plugin folder, activate the plugin on your WordPress Blog.
Go to the section you would like the excerpts to show and place the following code:
<?php echo SimplePieWP(‘http://example.com/feed.xml’, ‘items: 5, shortdesc: 200, showdate: j M Y’); ?>
You can adjust the “items”, “shortdesc” if you would like you can even remove the date.
The output will default to an Ordered List (numbered). If your want to change it to an unordered list, you need to be comfortable with changing the Plugin php. Don’t attempt it if you don’t know what you are doing, you might break it.