Category: WordPress

  • Styling the tinyMCE editor in WordPress

    With WordPress’ easy to use nature and user interface, content management of websites is accessible to a vast range of users, from the Bill Gates’ of the world right through to users who discovered this “internet thing” just yesterday. Once the concepts of “what is a content management system?” and “Okay, so this is the…

  • Enhancing the comments list in WordPress

    With the introduction of the wp_list_comments() function, WordPress enabled users to easily list comments on the websites without having to manually run a series of loops and queries to get the comments into neat XHTML. This function outputs default code with a selection of options for how this code is structured. Today we’ll be customising…

  • Storing a Twitter username with comments in WordPress

    We’ve all seen this before when commenting on a blog post we’ve just read. The standard comment form on a WordPress-driven website asks for a user’s name, email address (not published), website address and their comment. What if we could get some other information from the user*, and later integrate that into their comment? Why…

  • My (updated) WordPress Plugins Toolbox

    Last year, I wrote about my WordPress plugins toolbox, a series of WordPress plugins I find myself using day in and day out. Since then, the list has grown and developed further to adapt to my varying needs when constructing WordPress-driven projects. Below is an updated list of the plugins I find myself using almost…

  • Are WordPress.org users missing out?

    For whatever reason you began blogging, be it personal or otherwise, one aspect of blogging transcends blog type: comments and commenting. Whether you’re blogging about your most recent holiday or about the latest piece of technology, it’s always a nice feeling to receive a comment on your post. A large part of receiving comments on blog…

  • Javascript and WordPress – The Definitive Guide

    Using custom JavaScript code in a WordPress theme or plugin is, in many cases, a given. Fortunately, WordPress comes bundled with a selection of popular Javascript libraries (jQuery, Prototype and others) for use with your plugins and themes. Many users, however, simply write the `<script>` tags in the header.php file of their theme or as…