June 28, 2013

A good WordPress plugin

WordPress Plugins

A good WordPress Plugin article is been written for those guys who are developing a no. of WordPress plugins but not concentrating on quality. WordPress is enjoying a good share of whole w3 so it seems good when few hundred or thousand people downloads your plugin and give good comments. Developers code more plugins and keep it going on. It would be great if everyone could concentrate on a specific solution but master it fully. So w3 will get reliable and time saving solutions on every platform.
Happy Coding!

June 22, 2013

How WP Mechanic Will Work?

WordPress Mechanic - WordPress Plugin

How WP Mechanic Will Work? WordPress mechanic is a combination of FAQ feeds, blog items, consolidated tips and suggestions from WordPress gurus on wp-admin dashboard for those who are not familiar with technicalities. They don’t need to Google every small issue, just browse with WordPress mechanic or ask a new question if they are tired […]

June 19, 2013

Woocommerce CSV importer – Resume Feature

Woocommerce CSV importer – Resume Feature if(!function_exists(‘wce_gallery_resume’)){ function wce_gallery_resume($post_id){ $files = array(); $check_image = get_post_meta($post_id, ‘_product_image_gallery’, true); $check_image = is_array($check_image)?$check_image:explode(‘,’,$check_image); if(!empty($check_image)){ foreach($check_image as $image){ $i = basename(get_post_meta($image, ‘_wp_attached_file’, true)); $files[$i] = $image; } } return $files; } } How to use this? Locate this file “include/woocommerce-csvimport-functions.php” Locate function “woocsv_import_products_from_csv” Locate this line “if ( isset( […]

June 2, 2013

WordPress Plugin – Alphabetic Pagination

Alphabetic Pagination

May 31, 2013

WordPress Plugin – WP Simple Galleries – Images Helper Function

WordPress Plugin – WP Simple Galleries – Images Helper Function I have written this function for myself to use in a module. I was not require any shortcode so my requirement was like this. Have a look, might it will work for you as well. if(!function_exists(‘wp_simple_gallery_images’)){ function wp_simple_gallery_images($post_id) { $images = array(); $post_meta = get_post_meta($post_id, […]

May 29, 2013

WordPress Plugin – WordPress Mechanic

WordPress Mechanic

May 24, 2013

WordPress Plugin Editflow: User groups not selected on edit user page

WordPress Plugin Editflow 0.7.6: User groups not selected on edit user page User ids array was being empty on wp-admin/network/users.php. I created a user group through editflow -> user groups, selected users and updated. It was working fine but when i tried to edit a specific user, checkbox(es) were not checked. It was working fine […]

February 26, 2013

WordPress Function – Load Serialized Array from a Binary File

wordpress

WordPress Function – Load Serialized Array from a Binary File This function give you the convenience of reading serialized array from a binary file. It is good to manage few things with files instead of querying the database for very small flags which can be intelligently manged through filing. if(!function_exists(‘load_binary_file’)) { function load_binary_file($settings=array()) { $binary_file_file […]