I never was a big fan of Blogspot. One of the main reasons is the whole interface. The graphics look ok, but not ok enough. I haven’t used it since a few years ago, but from what I’ve seen, not much has changed.
When I say graphics I mostly refer to the header, which in some cases is HUGE. I am not going to give examples, because it’s not nice to point fingers
.
The best solution is to use WordPress.com (if you can’t be bothered to buy a host and have your very own home
).
If you want to add the page number into the title of your blog just copy-paste the following code before the ‘</title>’ tag:
<?php if ( $paged < 2 ) {
} else {
echo (' | Page ');
echo ($paged);
} ?>
The full code used to generate my title is:
<?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' |'; } ?> <?php bloginfo('name'); ?><?php if ( $paged < 2 ) { } else { echo (' | Page '); echo ($paged); } ?>
via Malcolm Coles
Everyone has to have a ‘Hello World’ post! This is mine.
I just installed WordPress, and I’m currently searching for a Theme. After that I will be adding some Plugins. Why did I choose WordPress? Because I can customise it in any way I want can. ‘Can’ because I am not a great web-designer
So here we go! Wish me luck
.