Archive for the ‘PHP’ Category

Your Own WordPress Loops Using The WP_Query Object January 4th, 2011
by Zeeshan

One of the easiest ways to navigate and manipulate the loop is to use the function called query_posts. When you use query_posts, however, you risk the following: Potential to interfere with plugins which make use of the Loop. Potential to invalidate WordPress conditional tags. Having to deal with resetting, rewinding, offsetting…

PHP Frameworks: What, When, Why and Which? January 12th, 2010
by Zeeshan

What is a PHP Framework? PHP is the world’s most popular scripting language for many different reasons – flexibility, ease-of-use, among others – but often times coding in PHP, or any language for that matter, can get rather monotonous and repetitive. That’s where a PHP framework can help. PHP frameworks streamline the the development of [...]