HTML 5 has a LOT of cool features, but my new favorite is CSS gradients. Using CSS gradients, you can eliminate many header, footer, and box background images. As a result, you can speed up page loads. Continue reading
Category Archives: WordPress Articles
WordPress: How to Remove Admin Bar
Sometimes, the best intentions completely miss the mark. This is the case of the new WordPress Admin bar; to me, ita big nuisance that interferes with the development of a template. The WordPress Admin bar appears at the top of your blog if you are logged into WordPress.
You can turn the Admin Bar off on a user-by-user basis by editing a user’s settings. But if you want to turn it off for the whole site, here’s how:
- Locate the functions.php file in your blog theme directory; for example /wp_content/themes/your_theme/functions.php.
- Insert the following line:
add_filter( ‘show_admin_bar’, ‘__return_false’ ); - Save the file and upload it to your web server.
Important: When you edit the functions.php file, make sure you insert the line before or after an existing function. To locate the beginning of a function, find text that looks similar to the following:
function some_text() {
And then add your line:
add_filter( ‘show_admin_bar’, ‘__return_false’ );
function some_text() {
Review: WordPress 3.0
I just installed WordPress 3.0 and everything went without a hitch. Well, almost. More on that later. I just clicked the Upgrade button and my WordPress blog was upgraded from 2.9.x to 3.0. This WordPress upgrade includes 2,700 changes and 1,200 bug fixes. Should you upgrade? Continue reading
WordPress Upgrade: Seamless!
I just upgraded my WordPress installation from 2.9 to 2.9.2. I was feeling lucky today, so I used the automatic update option. It worked perfectly, and I completed the update in less than a minute. Kudos to WordPress developers. Warning: If you use the automatic update feature, make sure you back up your WordPress database and all WordPress files first.
Firefox VERY Slow with Firebug Plugin: Problem Solved
I found that Firefox 3.5.3 has been very slow due to the Firebug plugin. And I found out how to fix the problem. Continue reading
WordPress Upgrade 2.8.4: Almost Flawless
I just upgraded WordPress to 2.8.4. It was so easy I started to giggle…then I found a problem: The Post Tag function no longer worked. Continue reading