Articles in the How To Category
How To »
You know WordPress is great – easy to use, powerful, popular – but it’s still a long way from the idea to a finished, custom-tweaked site. So what do you do?
It’s always possible to save money by doing it yourself. There are many online tutorials, and sites that explain how to do WordPress setup and configuration (like this one). However, if your primary goal is to make money, it pays to stick to what you’re good at.
But if you prefer to get someone to set up your …
How To »
How To »
Copyright is a tricky issue – but no matter what copyright your blog uses, the date is more than likely wrong – so how do you fix it?
You can edit the theme by hand every year to insert the new date – 2002-2009, 2002-2010, etc – or you can use a little PHP to handle it.
In your theme, find the copyright year, which is probably in footer.php. It often looks something like this:
Copyright © 2007 by Somebody or other…
What you want to do is change …
How To »
In the past, adding a post (or any other text that ‘stuck’ to the top of a WordPress home page) was annoying – the easiest solution in PHP was this:
<?php if (is_home()) { ?>
HTML text shown ONLY on home page…
<?php } ?>
However, now you can make a POST stick to the home page, and remain on top until you remove it. Go to that post’s edit section, and near the Publish button is the Visibility setting. Click on the Edit link there, and check …
How To »
PHP is a very useful and flexible computer language – proof of this is that WordPress itself is written in PHP.
In fact, it’s so useful that sometimes we just want a ‘little extra’ bit of code right in the middle of a WordPress blog post – but you can’t by default.
Enter runPHP, a plug-in that allows you to embed PHP and posts, and give your posts a little more dynamic power:
http://nosq.com/blog/2006/01/runphp-plugin-for-wordpress/
For quite some time, I’ve recommended using phpExec in your posts. However, I now feel runPHP …
