Tag: beta

  • Dreamweaver, Fireworks CS4 Betas Released

    Fresh from the Adobe Labs comes betas for Adobe Dreamweaver CS4 and Adobe Fireworks CS4. It should be noted that if you’ve been using CS3, there is a new unified interface that’ll be appearing in CS4 that may take some getting used to.

    Also, if you tested the Photoshop CS3 beta when it was released, I can’t stress enough that you should not install this software on a machine that is mission critical for your business. This is beta software. It may have problems. It may cause difficulties if you decide to upgrade to CS4 when it’s released.

    Caveat emptor.

  • Firefox 3 Beta 4 Released.

    Firefox 3 Beta 4 Released. Still not fit for general public consumption. Probably worth downloading just to make sure things you’ve built and/or building don’t break in the latest version, though.

  • Tags in WordPress 2.3

    WordPress 2.3 introduces a new feature to the popular blog platform: tagging. Sure, you’ve been able to do it with plugins like Ultimate Tag Warrior in the past, but WordPress’ built-in tag system is simple, unobtrusive, and easy to use.

    In order to get tags to display on individual posts, we’ll use the_tags.

    <?php the_tags('before', 'separator', 'after'); ?>

    Here’s how I currently have things setup:

    <?php the_tags( 'Tags: ', ', ', ''); ?>

    This gives me something like this at the bottom of each post that has tags:

    Tags: Tag 1, Tag 2, Tag 3

    Another new tagging feature in WordPress 2.3 is the introduction of wp_tag_cloud. The tag cloud takes all of your tags and displays them based on how much you use them on your site. You can see a live example of it on my archives page. To get the tag cloud on your site, you’ll use the following syntax in one of your templates:

    <?php wp_tag_cloud(??); ?>

    Where might you display the tag cloud? Well, you could put it in your sidebar, but I am not sure how system-intensive generating it is… I’d recommend creating a stand-alone page for it, or limiting the use of it on key pages only.

  • WordPress 2.3 Beta1

    So, a new developmental version of WordPress was released last night. Being the sucker that I am, I went ahead and upgraded to WordPress 2.3 Beta1, and to my surprise, everything installed without any problems at all.

    I haven’t seen a full list of all that’s been changed in this version, but based on my limited usage of it in the past half hour I can tell you about two of the updates that will make the most impact:

    1. Tags. Posts now support tags without the use of a third-party plugin.
    2. Plugin Version checking. When you’re managing your plugins, you’ll now be able to see if a newer version of it is available (assuming it supports update checking).

    According to the announcement, this version also include “faster JavaScript” and “SEO-friendly URL redirection”.

    All in all, it seems pretty stable so far. So, if you do decide to upgrade, know that it’s not a full release, and you’re bound to run into problems. Make sure you backup any WordPress-related site files and database beforehand. Deactivate all plugins. Then upgrade. Reactivate your plugins one by one checking to make sure none of them break your site…