Once upon...

an evening boring, while I pondered bored yet pensive,
Over many a strange and intriguing page of neglected blogs.
Swiftly, my mind began thinking, thinking of creating
A place of solace, of mapping of my thoughts and creations.
So welcome dear guests, if my words entice you.

The Voice

My name is Sue, simply Sue, an average idealist, a young adult, still uncertain about my future. My art and writings are by no means professional, but my passion for creating, creating, and creating is the living force that makes this site possible.

The Layout

Tested on:
  » Firefox 2.0.0.14, Opera 9.10,
    Netscape 8.1, Safari 3.1.1,
    Internet Explorer 7.0
  » Screen res: 1280x800
  » Color Quality: 32 bit

Affiliates

« Dailies | Apply? »

[ CLOSE ]
Gallery Graphics Anime Forums
AddThis Feed Button Bookmark and Share
Jan 24 2008

Creating a RSS Feeds Page

Have you ever wondered if there’s a way to create a page that displays all your friends’ recent entries so you don’t have to visit their sites individually every time you want to see if they have updates? Well, I have created just the post for you. I still need to find a way to display full entries though, and possibly categories the entries fall under, the author’s name, and a comments link with the number of comments already posted. Basically, I’m looking for something like Livejournal’s friends page or Xanga’s subscriptions page.

Here’s the bit of code you will be needing:

<?php
require_once (ABSPATH . WPINC . '/rss-functions.php');
$url = 'http://sue.com/feed/';
$rss = fetch_rss( $url );
if ( $rss ) {
echo "<h4>" . $rss->channel['title'] . "</h4>";
$i = 1;
foreach ($rss->items as $item) {
$href = $item['link'];
$title = $item['title'];
$pubdate = $item['pubdate'];
$author = $item['author'];
$category = $item['category'];
$description = $item['description'];
echo "<span style=\"font-size:16px\">$title</span><br /><b>$pubdate</b><br /><div style=\"padding:0 20px 0 20px\">$description</div>";
if ($i == 1 ) break;
$i = $i + 1;
}}?>

The only part you really need to change is the part that says
http://sue.com/feed/
Change that to whatever URL the feed page is to your friend’s web site. Usually they provide a link for you. If you have Firefox, you can view that page by clicking on the orange square icon on the very right of the address bar. Otherwise you can right click and view source to find where it says link rel=”alternate” and find the URL of the feed after that. Be sure it ends with rss, or feed. Somehow atom feeds don’t work with this code.

For each new feed URL you want on the page, you’ll need to copy and paste that code again and insert the URL.

For an example of a working Friends/Affiliates page, click here.

Edit on 1.30.2008: To display full entry feeds, use this bit of code in place of where it says $description = $item['description'];

$isset = $item['content']['encoded'];

and replace where it says $description with $isset.

To display the author’s name use this:

$author = $item['dc']['creator'];

And be sure to include echo “Author: $author”;

Oh yeah, and here are the instructions for how to apply the code:

To set up the dailies page, you need to create a template. Let’s call it “Feed”. To create a template, basically copy the code from page.php or if you don’t have that use index.php, but delete wherever they call the comments function, the date, and anything else you don’t want to show up on your dailies page.

Create feed.php with that copied code from page.php or index.php. At the top you should write <?php /* Template Name: Feed */ ?> or whatever you want the template name to be. Then you should paste that bit of code I mentioned in this post in place of where it says <?php the_content(); ?> or something similar to that.

Create as many duplicates of that bit of code as there are feeds you want to read from people. It only creates one entry per site. Be sure to replace the URL with whatever feed URL you want. After that, save the feed.php, and upload it on your server under your theme’s folder.

Then create a page in Wordpress, and name it “Dailies” or something like that. Be sure to select the template “Feed”. You don’t have to write anything on that page. Hit publish, and you should be able to view that page.

Thanks for your comment: Roz, Katie, bec, Destiny, Kimberly, lisadragon, Sue, Brenda, Yara, Angela, stanch, Xuan, Chien Yee

Posted in Tutorials | by Sue | 18 Comments »

Jan 10 2008

A New Year…2008

Usually I would at least post something at New Years wishing everyone a Happy New Year…but this time around I was so absorbed in the world of anime that I didn’t feel up to updating my blog. I haven’t felt like writing anything for a long time. I remember a while back last year that I said that I would like to make a promise to finish a story by the end of the year. Whether or not that was a definite promise, I have failed yet again to finish a story. Starting a story is easy enough but parts of a story always fall apart sometime or another.

I can, however, proudly say I haven’t procrastinated once on homework assignments and projects for an entire semester. I performed well academically and the classes weren’t too challenging for once.

2007 wasn’t exactly my best year. It may well be my worst year ever, but I’ve learned many things that year that I hadn’t known previously. For that, I cannot forget the events that have occurred no matter how much I want to forget them.

My resolutions for 2008 will be to become a better person and become more like those I look up to and admire the most. Even if I can change just a little, that will satisfy me. I will also continue to not procrastinate and receive As in all my classes. I will continue to work on my story, make many changes along the way, and become closer to finishing it. I am currently gathering ideas from various anime shows I watch. When I do finish, I will post that story on the web. Until then, I still have a lot of work ahead of me. I will find a better job than the one I have now. I will also try to become more literate in Chinese.

I know it may be late, or maybe not, but I wish everyone a magnificent New Year full of hopes, dreams, and accomplishments!

Edit: I have some paintings that I just uploaded. Also if any of you have time, could you please visit my forum?

Thanks for your comment: Brenda, moritheil, Destiny, Ciel, Connie, Chien Yee, Eunice, Yara, D, amy

Posted in Life | by Sue | 11 Comments »