How to remove unwanted boxes from WordPress Admin Dashboard

IF you want to remove dashboard boxes or meta boxes then use the code below in your theme function.php file. remove_meta_box( ‘dashboard_incoming_links’, ‘dashboard’, ‘normal’ ); remove_meta_box( ‘dashboard_plugins’, ‘dashboard’, ‘normal’ ); remove_meta_box( ‘dashboard_primary’, ‘dashboard’, ‘side’ ); remove_meta_box( ‘dashboard_secondary’, ‘dashboard’, ‘normal’ ); remove_meta_box( ‘dashboard_quick_press’, ‘dashboard’, ‘side’ ); remove_meta_box( ‘dashboard_recent_drafts’, ‘dashboard’, ‘side’ ); remove_meta_box( ‘dashboard_recent_comments’, ‘dashboard’, ‘normal’ ); 

Continue reading …

Joomla Webp Plugin

jdwebp A Simple joomla plugin to convert image into webp. If Image successfully converted then it will load webp image otherwise it will load default image. How To use this plugin. the code to load image is {jdwebp imageurl} and {jdwebp imageurl,alt text} codign exampel below. {jdwebp http://website.com/images/sampledata/fruitshop/apple.jpg} and {jdwebp http://website.com/images/headers/maple.jpg,mapple image} You can download the plugin code from 

Continue reading …