admin, Author at BrowserStudios
There are a million ways to write HTML and CSS, and everyone has their own, but is there a right way? Our code needs to be well structured, written in…
There are a million ways to write HTML and CSS, and everyone has their own, but is there a right way? Our code needs to be well structured, written in…
Source: I just found a sweet and short introduction on how to attach HTML to the current content! add_filter('the_content', 'add_post_content'); Basically, you append the post content after your custom content,…
July 31, 2013WordPressoop, WordPressadmin Object-Oriented WordPress Plugins Object oriented programming takes away pointers to functions and introduces polymorphism. PHP doesn’t use pointers in a way that C does, but a…
Backbone.js Backbone.js is known for its excellent documentation. I would suggest going through their examples first. The tutorials range from beginner to intermediate. The ToDo application is easy enough to…
Source: I just found a sweet and short introduction on how to attach HTML to the current content! add_filter('the_content', 'add_post_content'); Basically, you append the post content after your custom content,…
The key to WordPress’ flexible foundation is in its use of hooks. Be it in themes, plugins, or the core, hooks allow unparalleled growth while ensuring compatibility with future versions…