'left sidebar',
'before_widget' => '
',
'after_widget' => '
',
'before_title' => ''
)
);
function remove_footer_admin () {
echo "copyright 2011 macebook";
}
add_filter('admin_footer_text', 'remove_footer_admin');
add_action('admin_head', 'my_custom_logo');
function my_custom_logo() {
echo '
';
}
function add_post_content($content) {
if(!is_feed() && !is_home()) {
$content .= '
Thomas
admin of macebook.';
}
return $content;
}
add_filter('the_content', 'add_post_content');
?>