Fan Page Theme 2

I want a Sexy good looking Jennifer Love Hewitt theme
IT will include top logo and layout
Must be easy to install for a novice like me and prefer it to be adsence/amazon ready
widget ready
I want it laid out as follows
Menu across top under the header logo
3 rows
These can be in any order and I should be able to remove or ad as I need to
Far left for Friends urls,Adsence,tweets,latest news rss for Jennifer
Middle main content post and pictures
Right side Ads, Latest post,Comments.links for this site

This is for the theme Only and logo I will ad content etc to it I just want a theme I can upload to anysite and within minutes have it working like it should
The logo Will be really clear and crisp
Only bid if you have good feedback and ill only escrow half when you start and the other half when you finish
Do not bid if you can not finish this in a timely manner

Write articles and submit to EzineArticles.com-Easy by roseface

write articles about our product and service with high quality, unique content, and with SEO purpose. Article is around 400-600 words. We have many articles to write. we will provide you keywords and links… (Budget: $30-250, Jobs: Article Rewriting, Articles, Product Descriptions, Technical Writing, WIKI)


How to programatically remove WordPress dashboard widgets

Simply paste the following into your functions.php file. The code will remove all dashboard widgets, so you should comment lines related to wigets you’d like to keep.

function remove_dashboard_widgets() {
	global $wp_meta_boxes;

	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_drafts']);
	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);

}

if (!current_user_can('manage_options')) {
	add_action('wp_dashboard_setup', 'remove_dashboard_widgets' );
}

Thanks to NoScope for this code!

By the way, did you had a look to my latest post on CatsWhoCode about WP 3.0 custom post types?

Looking for WordPress hosting? Try WP Web Host. Prices starts at $5/month and you can try it for free!

How to programatically remove WordPress dashboard widgets