Category: WordPress

Plugin developer, Core contributor and support volunteer. Yeah, I’m a WordPress fan!

  • WordPress 3.1.2 released

    WordPress 3.1.2 has been released.

    This release addresses a vulnerability that allowed Contributor-level users to improperly publish posts.

    The issue was discovered by a member of our security team.

    We suggest you update to 3.1.2 promptly, especially if you allow users to register as contributors or if you have untrusted users. This release also fixes a few bugs that missed the boat for version 3.1.1.

    The official WordPress announcement

    3.1.2 Codex Details

    Change Details

    A list of the modified files (between WordPress 3.1.1 and 3.1.2)

    Download 3.1.2 (entire installation)

    Download 3.1.2 (just the changed files between 3.1.1 and 3.1.2)

  • Damn you, Professional WordPress Plugin Development

    So, I’m finally beginning to get somewhere with version 2 of my YouTube Embed WordPress plugin. As a birthday treat to myself I bought Professional WordPress Plugin Development from Amazon.

    Now, completion of my plugin is even less likely to be soon as this rather excellent book has just left me with a raft of further changes to make. Everything from coding standards to widget development is covered. I’m only a quarter way through and already there are sticky note bookmarks everywhere – each indicating something I need to look at.

    It’s not just this plugin this will affect though, as I will then turn my intention towards all my other plugins as well – starting with my caching and feed plugins which will get major overhauls (as this book mentions methods of performing each with a lot less effort than I’m currently applying!).

    Even their section on marketing your plugin has left me with ideas of changes I wish to make – first up, I’m going to see about renaming my existing plugins.

    If you’re into WordPress development I can’t recommend this book highly enough.

    Now, if you’ll excuse me… I have a lot of work to do.

  • Plains laid for WordPress 3.2

    WordPress have given some initial details of the plans for WordPress 3.2.

    Rather than adding lots of new features, this release is going to concentrate on speed improvements and restricting the WordPress minimum requirements (this will allow existing code to be removed and will make adding code in future easier).

    The requirements changing are…

    • PHP 5.2.4 required – WordPress will simply be dropping support for PHP 4 (i.e. there won’t be very many new PHP 5 features added)
    • MySQL 5 Required – like above, WordPress will simply be dropping support for MySQL 4
    • Internet Explorer 6 – no more fancy IE6-only hacks. WordPress will be officially discontinuing support for IE6 and instead providing a “use a real browser” nag screen (something this site already has installed)

    With support for long-outdated technologies being dropped, they promise this will be the fastest and lightest WordPress in quite some time. To this end they will also be focussing on speed improvements all around, including (but certainly not limited to) the Dashboard and admin menu.

    Two further announced changes are…

    • New Fullscreen Editor –  a new fullscreen editor that’s “more beautiful, more useful, and simpler.”
    • Better Upgrades – only changed files will be upgraded in future. Yay!

    WordPress have also promised faster release cycles in future (concentrating on what’s promised and not adding further changes later on).

    Certainly, I’m excited by this 😀

  • Do WordPress users need Jetpack?

    Automattic, the people behind WordPress have announced JetPack. In essence, it’s a plugin for self-hosted WordPress owners that adds functionality that WordPress.com bloggers have had for a while.

    That sounds a good thing, right?

    Well, most of the plugins (bar one) are available separately from Automattic and, this way, you can at least only install the components you actually need (reducing bulk and load on your installation).

    Here’s a run down of what Jetpack adds and where else, if possible, you can get the same functionality from…

    • WordPress.com stats – site stats delivered from WordPress.com. This is no longer available as a separate plugin.
    • Twitter Widget – the plugin library is chock full of Twitter widgets and general plugins. However, Automattic have their own Twitter widget named Wickett Twitter Widget which, looking at the code, looks pretty much to be the same plugin!
    • Gravatar Hovercards -various blogs have posted about how to add these to your WordPress blog yourself (as I have done). Alternatively, download a plugin from the directory.
    • WP.me shortlinks – a way of adding the WP.me URL shortener to your blog. As far as I can tell, this is not available as a separate plugin.
    • Sharedaddy – a social sharing tool. There are various alternatives, or you can download Sharedaddy from the plugin directory.
    • LaTeX – let’s you mark up your posts with the LaTeX markup language which is perfect, for example, for complex mathematical equations. Download from the plugin directory.
    • After the Deadline – adds advanced spell check and grammar checking facilities. Download from the plugin directory.
    • Shortcode Embed – puts LOADs of useful shortcodes to your fingertips, including video embedding. However, I suspect there are few of these that can’t be found elsewhere in other plugins. Instead of bulking up your site with shortcodes that may not be used, why not just install plugins to add those that you need?

    From what I can tell, the only feature that you can’t get elsewhere is “WP.me shortcuts” (a feature I’d like!).

    So, the answer is to install those that you want separately? It would be, but there’s a dark cloud in the Jetpack FAQ

    As we upgrade each of our individual plugins to be a part of Jetpack, we’ll prompt you to switch over to the new, Jetpack-powered version.

    Oh. You’re going to be forced to install all of them as Jetpack.

    I don’t get it. What’s the point of Jetpack? Ok, so they’ve bundled a number of (their) plugins together – but isn’t the joy of WordPress plugins that you can mix and match as you choose from different authors, getting each just the way you need it?

    This post has been updated from the original, as I thought that individual components of Jetpack couldn’t be deactivated, which would have lead to more serious concerns. After further testing, however, I’ve found that this is not the case.

  • WordPress function get_the_shortlink

    Many WordPress functions have a standard version which outputs the results directly and an additional version prefixed with get_ that returns the output – useful for adding to a string and manipulating before output.

    One such exclusion is the_shortlink, which returns a short link to any page or post – there is no get_the_shortlink, so many people have to resort to just outputting the result in a FORM field for people to cut & paste.  However, here is a quick way to add the capability to your blog.

    (more…)