January 2, 2014

I am a Software Engineer or I am a PHP Developer

I am a Software Engineer or I am a PHP Developer This was an obvious question among my circle whenever i met with a colleague who was developing applications in PHP. It was hard to explain that if someone is good in R&D or by any means can develop a good application so he is […]

December 31, 2013

WordPress Stickers & Badges Story

WordPress Stickers & Badges Story Its an interesting story that how i got engaged in WP10 party hosting. When i recall that moment i can’t believe that i was just visiting wordpress.org to view my plugin’s stats. I saw a red label on top of the wordpress website. It was exciting to register via meetup.com. […]

December 27, 2013

PHP – Helper Function – clean_xhtml

PHP – Helper Function – clean_xhtml if ( ! function_exists(‘clean_xhtml’)) { function clean_xhtml($string) { /*$string = preg_replace(‘@<iframe[^>]*?>.*?@siu’, ”,html_entity_decode($string)); $string = preg_replace(‘@<p[^>]*?>.*? @siu’, ”,$string); return $string;*/ $string = ereg_replace(“<[^>]*>”, “”, $string); $string = preg_replace(“@<p[^>]*?>.*? @siu”, ”,$string); return $string; } }

December 20, 2013

WordPress Custom Taxonomy Example

WordPress Custom Taxonomy Example: $_tType = ‘Taxonomy Type’; $_tSlug = ‘wp-taxonomy-type’; $_tId = str_replace(‘ ‘, ‘_’, strtolower($_tType)); register_taxonomy($_tId, ‘post’, array( ‘hierarchical’ => true, ‘labels’ => array( ‘name’ => _x( $_tType, ‘taxonomy general name’ ), ‘singular_name’ => _x( $_tType, ‘taxonomy singular name’ ), ‘search_items’ =>  __( ‘Search ‘.$_tType ), ‘all_items’ => __( ‘All ‘.$_tType ), ‘parent_item’ […]

December 10, 2013

WordPress Plugin – Endless Posts Navigation

Endless Posts Navigation

November 29, 2013

WordPress Admin is slowing down?

WordPress Admin is slowing down? I have checked a client’s website in details. The reason was ACF, i couldn’t install any plugin so can’t tell the no. of queries+DOM elements generation which were taking time to load. In fact ACF was querying to every single field to wp_posts & wp_postmeta and then include a no. […]

November 21, 2013

WordPress Widget – Authors Posts Widget

Authors Posts Widget

October 3, 2013

An Ideal Project Management System

Project Management System Background In fact we were looking for a PMS with an ongoing project perspective. Where there is no deadline or enddate of any project but a start date. Now every month we will perform a no. of tasks and clients could review the progress and reach to us through tickets. There should […]