Thanks clicked the Install .. going to check it out now.
- - - - -
Edit: I can't seem to get any output after installing this plugin.
I have installed MagpieRSS correctly. I created a directory called magpierss and uploaded the 4 main files along with the directory called extlib with the file Snoopy.class.inc in that directory. I then created a cache directory and set the proper permissions.
Next I created the profile field which was number 7 for me. Just a basic one line text field.
I then edited the xml file for the plugin and added my full path and double checked the field number which was already at 7. Then I used the plugin manager to upload the plugin xml file and it was added correctly.
Then I edited my postbit template with the if statement.
Now comes the problem .. the cache works fine and when I open the cache file in my editor it is reading the RSS feeds I am testing with just fine but on my post it never shows the post title or link.
Anyone else have this issue or am I missing something?
Example of where I have it .. maybe the placement? but the hook seems to be for the whole postbit so not sure there.
http://forums.emufanatics.com/showth...=5751#post5751
- - - - - - -
Edit2: I did a standalone test just using MagpieRSS .. and it works so at least I know it's not the server. ..
http://forums.emufanatics.com/rsstest.php
- - - - - - -
Edit3: Sorry for so many edits. After checking out some of the included documentation for MagpieRSS I noticed in the recipes file they showed how to limit the number of posts to show .. so I went ahead and stuck this into the plugin and now it works perfectly for me. Here is the code I used.
Code:
if ($post['field7']){
$num_items = 1;
$rss = fetch_rss($post['field7']);
$items = array_slice($rss->items, 0, $num_items);
foreach ( $items as $item ) {
$blogTitle = $item['title'];
$blogLink = $item['link'];
}
}
Many thanks for this great plugin.