October 26, 2009
WordPress RSS feeds
Category: WordPress, Tags: RSS, WordPress, khadlock at 3:56 pm
There are numerous built-in RSS feeds available through WordPress that can be added to your theme for visitors to subscribe to, all of which can be found here: http://codex.wordpress.org/WordPress_Feeds
To get your feed to display as a subscription option in modern browsers, one of the following lines of code can be added to the head of your current theme, or you can add all of the lines of code to provide multiple subscription options.
RSS 0.92 feed
<link rel="alternate" type="application/rss+xml" title="Subscribe to <?php bloginfo('name'); ?>" href="<?php bloginfo('rss_url'); ?>" />
RSS 2.0 feed
<link rel="alternate" type="application/rss+xml" title="Subscribe to <?php bloginfo('name'); ?>" href="<?php bloginfo('rss2_url'); ?>" />
Atom feed
<link rel="alternate" type="application/rss+xml" title="Subscribe to <?php bloginfo('name'); ?>" href="<?php bloginfo('atom_url'); ?>" />
MDM Zinc v2.5 Intrinsic Classes
Category: ActionScript, Tags: ActionScript 2, MDM Zinc, khadlock at 2:42 pm
I always misplace the URL to the Intrinsic classes for MDM Zinc, which are required by Flash when publishing AS2 classes that use the MDM library. So, I'm posting them here for myself and any
http://www.multidmedia.com/support/exchange/?action=detail&id=116
My first WordPress blog
Category: WordPress, Tags: WordPress, khadlock at 11:28 am
Believe it or not, this is my first WordPress blog, I've created themes and plugins, but never used it myself. I'll post my findings along with my usual code and design examples.
