Forum Replies Created

Viewing 15 replies - 61 through 75 (of 88 total)
  • Thread Starter itissue

    (@itissue)

    Thanks 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.

    Thread Starter itissue

    (@itissue)

    I 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/affiliates

    I’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.

    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.

    Thread Starter itissue

    (@itissue)

    I 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.

    Thread Starter itissue

    (@itissue)

    Thanks for the help!

    Thread Starter itissue

    (@itissue)

    Here’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('&laquo; Previous Entries') ?></div>
                <div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></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('&laquo; Previous Entries') ?>
            </div>
            <div class="alignright">
               <?php previous_posts_link('Next Entries &raquo;') ?>
            </div>
          </div>
    <?php else : ?>
        <h3 class="center">No posts found. Try a different search?</h3>
        <p>&nbsp;</p><center><?php include (TEMPLATEPATH . '/searchform.php'); ?></center>
    <?php endif; ?>
    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    When 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.

    Thread Starter itissue

    (@itissue)

    This 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

    Thread Starter itissue

    (@itissue)

    If 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 page

    Can anyone please help?

    Forum: Fixing WordPress
    In reply to: Blank page

    Here’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 page

    I 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 page

    I’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

    Thread Starter itissue

    (@itissue)

    I 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?

    Thread Starter itissue

    (@itissue)

    My url is http://suefeng.com

Viewing 15 replies - 61 through 75 (of 88 total)