Posts tagged as:

WordPress

Thesis theme customization ebook

by Roberto on February 27, 2010

in Work

Thesis customization book

The Fourblogger team has created an ebook guide to Wordpress Thesis theme customization.
The ebook covers the following topics :

  • Basic Things You Need To Know Before Doing Customization
  • Thesis Hook Reference List
  • Custom_functions.php File
  • Custom.css
  • How to change custom-sample folder into custom folder?
  • Chapter 1: Thesis Theme Header Customization
  • Chapter 2: Thesis Theme Navigation Menu Customization
  • Chapter 3: Thesis Theme Content Menu Customization
  • Chapter 4: Thesis Theme Sidebar Customization
  • Chapter 5: Thesis Theme Footer Customization
  • Chapter 6: Thesis Theme Social Bookmark Customization

If you are interested, you can download the ebook in PDF format, from this link.

{ 0 comments }

How to translate the WordPress Thesis Theme

by Roberto on August 16, 2009

in Work

Post image for How to translate the WordPress Thesis Theme

WordPress Thesis Theme is shipped in English language only, but it provides also the strings to translate in a file in PO (GNU Gettext Portable Object) format.
The file is thesis.po and is located in the directory wp-content/themes/thesis of your WordPress installation. The file thesis.mo that you’ll find in the same directory is the same file but in the machine readable format.
To translate the Thesis’s strings in your own language follow these simple steps :

  1. set your preferred language in the file wp-config.php : for Italian, for example, define ('WPLANG', 'it_IT');
    See these instructions WordPress in Your Language for a complete guide.
  2. rename the thesis.po file using your language code (ex for Italian language in will be : it_IT.po)
  3. open the file with the text editor of your choice and translate the strings filling the msgstr value
  4. using the command-line utility msgfmt to create the machine readable file : msgfmt -o it_IT.mo it_IT.po
  5. copy the files it_IT.po, it_IT.mo into the wp-content/themes/thesis directory

Suggested books

WordPress Plugin Development: Beginner's GuideWordPress Theme Design

{ 8 comments }

WordPress Thesis Theme : moving the menu

August 13, 2009
Thumbnail image for WordPress Thesis Theme : moving the menu

By default WordPress Thesis Theme puts the navigation menu at the top of the page.
But it is very easy to move the menu around in your theme using the Thesis hooks.
A common situation is when you want to move the menu below the header of your theme, for example to have your logo at the [...]

Read the full article →

Book : WordPress Theme Design

July 9, 2009
Thumbnail image for Book : WordPress Theme Design

Title : WordPress Theme Design
Authors : Tessa Blakeley Silver
"This title will take you through the ins and outs of creating sophisticated professional themes for the WordPress personal publishing platform. It will walk you through clear, step-by-step instructions to build a custom WordPress theme. From development tools and setting up your WordPress sandbox, through design tips [...]

Read the full article →

Book : WordPress Plugin Development

July 9, 2009
Thumbnail image for Book : WordPress Plugin Development

Title : WordPress Plugin Development
Authors : Vladimir Prelovac
"If you can write WordPress plug-ins, you can make WordPress do just about anything. From making the site easier to administer, to adding the odd tweak or new feature, to completely changing the way your blog works, plug-ins are the method WordPress offers to customize and extend its [...]

Read the full article →

The Wordpress Thesis Theme hooks

April 29, 2009
Thumbnail image for The Wordpress Thesis Theme hooks

2009-05-01 update Added the description of the hooks where available. Two series of visuals are now provided, with and without hook description. PHP code has been updated accordingly.
Thesis is a powerful theme for WordPress. It has many valuable features that help you to be productive in minutes with your WordPress website :

SEO compliance
accessibility
usability
flexibility

It has also [...]

Read the full article →