![]() |
|
||||||
|
|
Thread Tools | Display Modes |
|
#1
|
||||
|
||||
|
Purpose:
Designers need to be able to find which file to edit to affect a particular part of a page. Like traveling by automobile, this can be daunting without a good map. This tutorial will aid designers in creating a map for their StudioPress themes. Prerequisites: You may need to know the following:
How to find the right theme file to edit If you need to change a style like a font face or the size of a margin then you need to edit a style sheet. The theme style sheet is named style.css. Some WordPress Plugins add additional styles both inline and in files. Using Firebug for Firefox will help you track down style information. If you need to change the structure of a page then you need to edit one of the php theme files. Read on. When WordPress first starts up it tries to determine which page is being called. It does this by asking a series of questions. The first one which is true is chosen as the winner and WordPress goes looking for the template file which has been assigned to render it. If you are familiar with the WordPress Conditional Functions you already know the questions. As of WordPress 2.8.5 they are:
The Template Hierarchy contains a graphical list of the template files. I won't add it to this post because it changes as WordPress is updated. You should read the whole document to get the full details. It is important to understand how the hierarchy of files works. Extending the example, if is_search() is true then WordPress looks for the search.php theme file. If search.php is not found then WordPress uses the index.php theme file. If is_page() is the first test that is true then WordPress will look for a page template file, like the page_fullwidth.php theme file. If no template file is found (or if this page doesn't use a template file) then WordPress looks for the page.php theme file. If page.php is not found then WordPress will use the index.php theme file. Now you have the file that renders the page, but you still don't have the file you need to edit. Huh? Each template file can optionally pull in other files to make the page for the browser. StudioPress themes typically use four or more files to load a page. This is a good thing for theme authors. It allows them to add navigation menus, for instance, that are the same on each page without having to repeat the same code in multiple files. Most StudioPress theme pages are broken down like this: typical-page-layout.jpg To keep things exciting, the sidebar.php theme file may call other theme files, like the sidebar_left.php theme file in Lifestyle 4.0. If you are not sure you are in the correct file, try disabling or clearing your browser's cache and add something obvious to the file you think is the correct one. Add something like this: Code:
<h1>I am Editing Here !</h1> One more example. You need to edit the logo at the top of the page. You would edit the header.php theme file. No need to go through the hierarchy unless you have added extra header.php type theme files. Where to go from here
__________________
Charles "Rubeus Hagrid" Clarkson StudioPress on Facebook I'm not really a smart person. I just play one on the Internet. Please use the HTML
or PHP tags for pasting code.Please make your links click-able: this_is_annoying.com http://this_is_not_annoying.com. Last edited by CharlesClarkson; 11-30-2009 at 06:57 PM. |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Trying to find header.ph file in Lifestyle theme to no avail | Diversified Woman | General Discussion | 4 | 12-20-2010 10:21 PM |
| Where can I find and edit [...] | MRG | General Discussion | 2 | 10-01-2010 02:15 PM |
| In what file can I find this text to edit: "[Read more of this review]"? | BP123 | General Discussion | 1 | 01-14-2010 07:47 PM |
© Copyright 2012 Copyblogger Media LLC · StudioPress™ is a trademark of Copyblogger Media LLC
Privacy Policy | Refund Policy | Terms of Service | Affiliate Program | Contact Us