January 13, 2016

Enfolded GuavaPattern

Enfolded GuavaPattern An upcoming free WordPress theme which can be used as a parent theme and also will work as a child theme for the famous WordPress theme “Enfold”.

November 11, 2015

WooCommerce get products by tags

function get_products_and_packages(){ $args = array( ‘post_type’      => ‘product’, ‘posts_per_page’ => -1, ‘product_tag’      => array(‘package’) ); $packages = get_posts($args); $currency = get_woocommerce_currency_symbol(); $arr = array(); if(!empty($packages)): foreach($packages as $package): $meta = get_post_meta($package->ID); $arr[$package->ID][‘name’] = $package->post_name; $arr[$package->ID][‘title’] = $package->post_title; $arr[$package->ID][‘price’] = current($meta[‘_regular_price’]); $arr[$package->ID][‘display_price’] = $currency.$arr[$package->ID][‘price’]; endforeach; endif; return $arr; }

October 2, 2015

Guava Pattern – A WordPress Theme Framework

Guava Pattern – A WordPress Theme Framework Guava Pattern is first WordPress theme development framework from Asia/Pakistan. This framework is based on codestar with a lot of extended functionality. Purpose to develop this framework is to improve theme development experience and to automate a few time taking things. Who is Guava Pattern For? Guava Pattern […]

August 28, 2015

WordPress Plugin – WP Datepicker

WordPress Plugin – WP Datepicker

August 15, 2015

WordPress Plugin – WP Easy Sharing

WP Easy Sharing

July 16, 2015

WordPress Plugin – WP SpeedUp

WP SpeedUp

July 1, 2015

A WP Ghost adds code to .htaccess file!

I was working with .htaccess and whenever i change some apache headers in .htaccess so in a few moments some script was adding the following snippet again on EOF. It was a surprise for me that what type of ghost is there inside WordPress which has to check the “# END WordPress” and appends after […]

June 27, 2015

WordPress Plugin – WP Header Images

WP Header Images