WordPress Plugins

WordPress plugin development tips, ideas, guidelines and best practices.

  • A few guidelines for WordPress plugin development

    The WordPress plugin API is vast and powerful. It allows developers to essentially hook code into almost any area of the WordPress system without modifying the core files at all. It also allows for the creation of standalone plugins that work within the WordPress system but do not hook into the core modules. Over the…

  • My WordPress plugins toolbox

    Posted on

    in ,

    Hey everyone, Just thought I’d post a list of my most regularly installed WordPress plugins and why they are installed on virtually every WordPress installation I do. If there are any plugins I haven’t listed that should be, please let me know in the comments. 🙂 1. Maintenance Mode This plugin is truly awesome. It…

  • Getting the information of a root page in WordPress

    Often, when using WordPress as a content management or blogging tool on a website, one uses a multi-level page structure. This entails a page being listed “underneath” another page in a tree structure. Usually, if your WordPress installation’s permalinks deviate from the default setting, your page URL structure will look something like this: http://websiteurl.com/parentpageslug/subpageslug (Note:…

  • WordPress Shortcodes… in short

    In the spirit of the topic, I’ll keep this post short and sweet. Today I’ll be discussing WordPress’s shortcode API and how to utilise it. WordPress shortcodes are codes (eg: [list_bookmarks]) which can be typed into the content area of a page or post in order to provide functionality of some kind. Shortcodes can be…

  • Integrate tinyMCE into a WordPress widget

    Posted on

    in ,

    So, the native WordPress text widget is great, right? It allows users to insert virtually any form of content into a widget, provided they either want plain text or know a bit of HTML. The fact that this widget can be used in multiple instances is also awesome. Recently, I’ve needed to provide a bit…