autumneve
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: WordPress compatible with MySQL 5?Thanks. I already did the backup as a “just in case” measure. =)
Forum: Fixing WordPress
In reply to: wp_list_cats: children won’t display in Category listNo one? Really?
As further info, most of the child categories are NOT empty, but none display.
Also, I have the category heirarchy set up like:
Parent I
-child 1
--child a
--child b
--child c
--child d
-child 2
-child 3
Parent II
Parent III
Parent IVForum: Fixing WordPress
In reply to: bloginfo / RSS feedsThank you, it all seems to be working now.
Forum: Fixing WordPress
In reply to: bloginfo / RSS feedsThere’s no need to be nasty.
https://autumneve.com/blog/index.php/feed/
https://autumneve.com/blog/index.php/comments/feed/
Both go to a blank page instead of the xml tree. Neither validate in feedvalidator.org, and return:
Server returned HTTP Error 304: Not Modifiedhttps://autumneve.com/blog/wp-feed.php validates just fine, however.
Forum: Fixing WordPress
In reply to: bloginfo / RSS feedslet’s try that again:
sidebar:
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li><li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
Forum: Fixing WordPress
In reply to: bloginfo / RSS feedsI suppose I should mention that it’s WP 1.5.
The <link rel… etc> syntax is correct, it just produces the wrong feed URL.
In the header:
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(‘rss_url’); ?>” />
<link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo(‘atom_url’); ?>” />—————-
and the sidebar:- ” title=”<?php _e(‘Syndicate this site using RSS’); ?>”><?php _e(‘RSS’); ?>
- ” title=”<?php _e(‘The latest comments to all posts in RSS’); ?>”><?php _e(‘Comments RSS’); ?>
————–
Both of these produce the same feed URL (domain.com/index.php/feed), which is invalid. Like I said, hard-coding the correct URL works, but I wonder why the tags don’t. I don’t want my feed to break (again) should the URL dynamically change for whatever reason in the future.