The Admin Dashboard Div

You can use wp_add_dashboard_widget function: wp_add_dashboard_widget($widget_id, $widget_name, $callback, $control_callback = null) This Codex article should help you: http://codex.wordpress.org/Dashboard_Widgets_API

change the Dashboard menu items label wp

Found here: add_filter(‘gettext’, ‘rename_admin_menu_items’); add_filter(‘ngettext’, ‘rename_admin_menu_items’); function rename_admin_menu_items( $menu ) { $menu = str_ireplace( ‘Dashboard’, ‘Home’, $menu ); return $menu; } Change home to whatever you want it to be

How to add custom field to wordpress page everytime user uploads new image in WP visual editor?

When an image is uploaded via the media editor the action hook add_attachment is triggered, with the ID of the attachment passed as the parameter. You can get full post data for the attachment using the ID to determine the ID of the post/page the image is attached to (stored in the post_parent property). Example … Read more

Which plugin could minify the Dashboard? [closed]

According to the Author of W3 Total Cache Better WordPress Minify and W3 Total Cache are Not compatible with each-other due to the fact that they are rpetty much based on the same code. OK, after about 20 mins of searching and trying, the solution is Pretty easy. Of course it’s a “solution” only if … Read more

How can I remove these options from the dashboard?

You can use the remove_menu_page function from the admin_menu action. An example for you would be to add this to your functions file (this will remove those menu links for you as well). function remove_menus() { remove_menu_page( ‘options-general.php’ ); remove_menu_page( ‘profile.php’ ); } add_action( ‘admin_menu’, ‘remove_menus’ ); If you need to be more specific to … Read more