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 […]

WordPress Plugin – Keep Backup Daily

WordPress Plugin Keep Backup Daily

Keep Backup Daily

January 12, 2013

Session out issue in codeigniter

Session out issue in codeigniter Note: wdwd = websitedesignwebsitedevelopment In fact CI is managing the session with cookies and when you mention your domain in config file so it creates the cookies with that identity. It is already clear that we can have sub-domains as well. So with www. and without www. cookies will have […]

December 12, 2012

difference between wp_footer and get_footer

wordpress

difference between wp_footer and get_footer The get_footer() is a function which is used to include a theme file from theme directory. And wp_footer() is an action hook, which can be used as do_action( ‘wp_footer’ ) to inject scripts in the site HTML footer. get_footer() is a custom html code which is available in footer.php and […]