February 21, 2014

WordPress Plugin – Injection Guard

Injection Guard

February 1, 2014

WordPress Widget – RSS Feed Widget

RSS Feed Widget

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 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

September 27, 2013

How to merge two databases in WordPress?

merge ahead

How to merge two databases in WordPress? You must be surprised that what does it mean by merging two databases in WordPress and why it is required? In fact, i faced a challenge few days ago where new database was updated with respect to the settings, themes and other installation stuff but the old database […]