itissue
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Create an RSS feed page to view subscribed blogsThanks but it doesn’t seem to show the post date or full entries in the examples listed. I tried using the plugin on my blog but it didn’t work at all.
Forum: Fixing WordPress
In reply to: Create an RSS feed page to view subscribed blogsI found a way to create an RSS feed page, but now I want to be able to display full entries in the feed. I also want to display the date the entries are posted, and possibly the number of comments the entries have received, though this is not important. Right now this is how one entry is coded:
<?php require_once (ABSPATH . WPINC . '/rss-functions.php'); $url = 'http://www.phucnguyen.com/?feed=rss'; $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']; $description = $item['description']; echo "<a href=\"$href\">$title</a>$description"; if ($i == 1 ) break; $i = $i + 1; }}?>Here’s the link to my RSS feed page:
http://suefeng.com/affiliatesI’m guessing I have to change $description to something else, but I’m not sure if this is the case. I’m not sure of how to add a date stamp though.
Once again, any sort of help is much appreciated.
Forum: Fixing WordPress
In reply to: Gravatars installed but only displaying generic IMG I entered…I am having the same problem. I’m only getting the default gravatar to show up, even when I comment with my email address which definitely has a different gravatar.
Forum: Themes and Templates
In reply to: The requested theme does not existI really need help on this. Should I downgrade to WordPress v2.1 since it worked before? I’m afraid my MySQL database will be messed up though. I won’t downgrade unless it’s the last thing I can do to resolve this problem.
Forum: Themes and Templates
In reply to: search.php edit to display more textThanks for the help!
Forum: Themes and Templates
In reply to: search.php edit to display more textHere’s the search page:
<?php get_header(); ?> <div id="content" class="narrowcolumn"> <?php if (have_posts()) : ?> <h3 class="pagetitle">Search Results</h3> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div> <div class="alignright"><?php previous_posts_link('Next Entries »') ?></div> </div> <?php while (have_posts()) : the_post(); ?> <div class="post"> <h4 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h4> <small><?php the_time('l, F jS, Y') ?></small> <p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"> <?php next_posts_link('« Previous Entries') ?> </div> <div class="alignright"> <?php previous_posts_link('Next Entries »') ?> </div> </div> <?php else : ?> <h3 class="center">No posts found. Try a different search?</h3> <p> </p><center><?php include (TEMPLATEPATH . '/searchform.php'); ?></center> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>Forum: Themes and Templates
In reply to: No themes showing up in the presentation pageWhen I upgraded to v2.3, I started having errors with themes not displaying some of the times and a blank white page is shown where my site should be. When I go to “edit theme” it says “the requested theme does not exist”. I go to “themes” and find that none of the themes are selected. I re-select the theme I’d selected before and everything is fine, except it keeps getting unselected.
Forum: Fixing WordPress
In reply to: The requested theme does not existThis is a serious problem since my site will be down half the time if I don’t keep re-selecting the theme I want to use.
Here’s the URL to my site: http://suefeng.com
Forum: Fixing WordPress
In reply to: The requested theme does not existIf anyone can help me that would be great. I would like to resolve this problem as soon as possible.
Forum: Fixing WordPress
In reply to: Blank pageCan anyone please help?
Forum: Fixing WordPress
In reply to: Blank pageHere’s the error message that I keep getting when I go to edit a theme: The requested theme does not exist.
I then have to go to themes and re-select the theme.
Forum: Fixing WordPress
In reply to: Blank pageI think it has something to do with the theme switcher. When I go to switch the theme, a few minutes later when I go back to edit the theme it says theme not valid or something of the sort. Then I have to go back and re-select it because when I go back to view themes, none of the themes are selected. This is strange. Has this happened before to anyone else?
Forum: Fixing WordPress
In reply to: Blank pageI’m having a blank page too. Well, not on my computer it’s not, but my friends say they can’t view my site because the page is blank. It’s not blank when I view it on my computer though.
Well, your site looks fine to me. But then again you posted this 3 months ago.
Here’s my site url: http://suefeng.com
Forum: Fixing WordPress
In reply to: XHTML validation errorsI fixed the XHTML validation for the homepage, but there are still errors in other pages. For instance, in the “About” page I got this error:
* Line 1, column 3: XML Parsing Error: Start tag expected, '<' not found<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.
* Line 1, column 0: character "" not allowed in prolog
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.
How do I fix this error?
Forum: Fixing WordPress
In reply to: no email notificationsMy url is http://suefeng.com