how to move your WordPress blogs over to Blogger?
Tech March 28th, 2010
Ever wanted to move your WordPress blogs over to Blogger? This site can aid in the process!
http://wordpress2blogger.appspot.com
How to remove the arrows » from WordPress titles
Tech March 26th, 2010
1- Go to
2- Then select the theme you are using (ex: xx), and click on Header header.php link (You will edit the file wp-content > themes >xx>header.php)
3- (Backup your header.php first) then replace the tag <title></title> with the following code:
<title><?php wp_title(”); if(wp_title(‘ ‘, false)) { ?> | <?php } bloginfo(‘name’); ?></title>
Or this code also:
<title><?php if (is_home()) {bloginfo(‘name’) ;} else { wp_title(‘ ‘);} ?></title>
These code was primary taken from: http://www.trentmueller.com/blog/remove-the-arrows-»-from-wordpress-titles.html


