The WordPress theme functions file, functions.php, basically acts like a plugin, adding more features to WordPress theme. Currently I added the code as following to this file for supporting widget in dynamic sidebar.
- Categories
- Buddies & Links
Something Personal Yet Public
Normally, header.php will start with html doctype declaration, and xhtml namespace. By default, WordPress theme is using XHTML 1.0 Transitional. WordPress function, language_attributes();, will display the language attributes for the html tag. If you want your site supporting XFN (XHTML Friends Network), you can add profile=”http://gmpg.org/xfn/11″ for the header tag. Inside header tag, you will [...]
I decided to develop WordPress theme from scratch in order to learn how the WordPress theme works. This WordPress theme development series is for WordPress version 2.7. Some of template tags that I use only available in WordPress version 2.7. So you might want to modified it to suite other WordPress version. First of all, [...]
The easiest way is through site administration panel. Here are the steps below: Log in to WordPress using admin account. Go to Design > Theme Editor section. Choose the theme template file (on your right) that you want to edit and then click it. After finish editing, click Update File button. Log out from WordPress.
Add Gravatar in WordPress Comments
Recently I start using Gravatar (an abbreviation for globally recognized avatar). It is a free service for providing globally-unique avatars which was created by Tom Werner for blogs and web forums. I want to embedded it in my WordPress 2.7 template. So I try to insert the additional code as below in comments.php and it [...]
Posted by Ivan @ April 24th, 2009 in WordPress with Comments, WordPress Theme
No Comments »