Lorelle, the consummate WordPress blogger, wants to know what you look for in a WordPress host. She hates hers, and is shopping around.
What do you look for?
Lorelle, the consummate WordPress blogger, wants to know what you look for in a WordPress host. She hates hers, and is shopping around.
What do you look for?
WordPress just announced the release of version 2.1, which WebbleYou, as the premier host of WordPress-powered independent weblogs, will be installing and supporting immediately.
New customers who sign up today will have WordPress 2.1 preinstalled, and existing customers may request an upgrade (at no charge) by contacting WebbleYou support.
WP 2.1 has a slew of new features, including:
WordPress has also announced an aggressive new upgrade schedule, with the next release set for April 23rd. More at the WordPress Development Blog
Note that there are expected to be some plugin compatibility issues, which you can read about and check on.
WordPress 2.0.5 is now available, and as always, WebbleYou will be preinstalling, supporting, and (upon request) upgrading to this version.
This is not a major feature release, but the WP team recommends upgrading because of the enhanced security of this release. We will be testing the new version to make sure their are no bugs that will affect users (one remains to be seen).
This is also a good time to remind everyone to use the WordPress database backup plugin, in case something happens while you’re using your site (our systemwide backups aren’t good for restoring individual databases). If you need help with any of this, or have any questions, please contact us.
WebbleYou is proud to release the alpha edition of the LogoFriendly theme, which is in use on this site. This theme is highly customizable, and very easy to use. Read more
If you move from Blog*Spot to WordPress, you’ll likely have many inbound links still pointing at your Blog*Spot site. There’s no reason to take down your Blog*Spot site and lose the traffic those links generate. However, you also want users to find your new site.
If you want to redirect users from a specific post on your Blog*Spot site to that same post on your new site, look for this section of your Blogger template:
<$BlogItemBody$>
And add something like this right below it:
You are viewing my old site. You can my new site.
This will take users to a search results page, which, if you use fairly unique post titles, will lead the user to the correct post.
WebbleYou specializes in helping you move from Blogger to WordPress. Please contact us if you are interested in our services.
WebbleYou is pleased to offer private domain registration for $10/year. This makes it easier than ever to start a website, with the security of private registration but without the hassle or expense of going through a separate domain registrar. Find and order a domain here.
You can use your own link engine to hide outgoing links such as affiliate links. For example, if you wanted to direct visitors to Amazon when they visit yourblog.com/go/books, you could take the following steps:
go in your webroot (e.g. /www or /public_html or /httpdocs folder).Redirect /go/keyword http://www.destination-url.com/affiliate-codego directory. Note: Windows will not let you name a file .htaccess on your PC. Give it another name and rename it to .htaccess after uploading.# END WordPressRewriteRule ^go/.*$ - [PT]WebbleYou was commissioned by a client to widget-ize the excellent Blix theme for WordPress. You can download the widgetized version here: ZIP | tar.gz
WordPress widgets are a project of Automattic. The Widgets plugin requires WP2.0.2 (which we pre-install by default).
Notes:
If you notice any issues, please let us know. If you would like WebbleYou to widget-ize a theme for you, we can do so for around $20 (depending on the complexity and your needs). Contact us to discuss details.
Note: This theme was last updated on May 1, 2006. If you downloaded the theme prior to that date, you will have RSS feed problems and other issues; please use the new version, which fixes these problems.
To specify a different banner image for each “page” on your WordPress-powered site, you can use the is_page conditional tag. If you’re using the Kubrick theme or a theme based on Kubrick (about 80% of WP themes are), this code or something like it should do the trick. Edit your header.php and replace the #header { … } style line with:
#header { background: url("/images/
(is_page('1')) {
echo "about.jpg";
} elseif (is_page('2')) {
echo "photos.jpg";
} elseif (is_page('3')) {
echo "calendar.jpg";
} elseif (is_page('4')) {
echo "donate.jpg";
} elseif (is_page('5')) {
echo "contact.jpg";
} elseif (1) {
echo "default-banner.jpg";
} ?>“) no-repeat bottom center; }
You can of course add or delete elseif statements to match the number of pages you have, and change the filenames to match your banners. The number in quotes in each is_page statement is the page ID, which you can see when editing the page.
To use a random header image each time, see Flash JPG rotator.