WordPress Archives

  1. SVN to Git Migration

    A couple of weeks ago we shut down the Crowd Favorite office for a day and a half to do a migration from SVN to Git. This was not a small undertaking. We had nearly five years of code in a single SVN repository that was then broken out into literally hundreds of Git repositories.…

  2. http_build_query() Separator Tip

    I ran into an interesting “bug” in Twitter Tools last night that I traced back to http_build_query(). I expected that the query strings generated by this function used & as a separator for the key=value pairs, but on one of our test servers, the separator being used was &. This is a php.ini config setting,…

  3. Twitter Tools 3.0 beta 2

    I’ve packaged beta 2 of the next generation version of Twitter Tools. Version 3.0 is a ground-up rewrite on top of the Social platform, with a few features included for backward compatibility. If you’d like to test the beta, grab it from GitHub. This version fixes several bugs that were found in our QA process,…

  4. WP_Query by “Standard” Post Format

    When using WordPress post formats, you’ll quickly start looking for a way to query WordPress content by the “standard” post format. This Trac ticket seeks to work on solving this. The implementation there handles URL-based requests: http://example.com/type/standard/ quite nicely. However the code in that patch doesn’t (yet) handle direct WP_Query calls. I was hacking on…

  5. WordPress Core Contributions

    WordPress Hoodie

    At today’s team meeting, the Crowd Favorite folks who contributed to the WordPress 3.3 release (including me!) received goodies. I hope to dole out a few more for the 3.4 release. Related: If one of your 2012 resolutions is to contribute to core WordPress code development, please read this post: wp.me/pbNCB-ui — WordPress(@WordPress) January 5,…

  6. Popularity Contest is Dead (and on GitHub)

    I wrote the Popularity Contest plugin for WordPress back in May of 2005. It had a good run, but that run is over. We are no longer developing or supporting Popularity Contest, and I recommend letting it rest peacefully. Why? It does too much, and too little at the same time. It does too much.…

  7. A Couple of Core Submissions

    Just created tickets in Trac for 2 potential core features: Improved admin UI for Post Formats, with fallbacks (as previously discussed) A post stack switch/restore implementation (useful for developers) Already some good feedback on the latter. This post is part of the project: Post Formats Admin UI. View the project timeline for more context on…

  8. WordPress Plugins and Symlinks

    If you’re doing serious development for WordPress you will quickly find yourself in a situation where you need to test a plugin in multiple installations. Using symlinks is a great way to make sure that you don’t end up editing in multiple locations, perhaps forgetting to commit a change, etc. However, there are some headaches…

  9. Twitter Tools 3.0 beta 1

    I’ve been working for a while on a version of Twitter Tools that extends Social. Version 3.0 is a ground-up rewrite, with a few features included for backward compatibility. If you’d like to test the beta, grab it from GitHub. Note that this is lightly tested and there is absolutely no information in the README…

  10. WordPress 3.3 – Time to Upgrade

    My upgrade to WordPress 3.3 was a simple svn switch command – everything just worked. The level of polish in the admin has really been stepped up in the last few releases. Hats off to all the folks doing great work there. I’m probably most pleased that my media size patch was accepted; I think…

  11. Social 2.0 for WordPress

    I’m very excited about today’s release of Social 2.0, a WordPress plugin from MailChimp. This is perhaps my favorite WordPress plugin; it is complex and ambitious, but I love the way it helps build a bridge between social networks and WordPress – a platform where we can really own our data. Social has a couple…

  12. WordCamp Orlando 2011

    I’m looking forward to attending WordCamp Orlando with Devin this weekend. Looks like there is a great schedule in place and I’m looking forward to catching up with fellow developers and hanging out with our friends at Voce. I’ll be helping out at the Happiness Bar at 9:30am if anyone wants to say hello or…

  13. Social 2.0 beta 3

    We have been working hard on a new version of the MailChimp’s Social plugin for WordPress. We have packaged a beta version for public testing (2.0b3, currently running on this site). Download from GitHub We are hoping for a general release of version 2.0 on Monday, so please report any issues you find in the…

  14. WordPress Post Format Fallbacks

    Post Format Fallbacks

    While our post formats admin UI is getting a nice warm reception (100+ tweets, pings and comments, wow!), there is a concern that has popped up a few times – one that I included a nod towards in my original post. What happens when publishers put important data in the post format custom fields, then…