Bricktowntom is committed to exceeding your expectations by providing a positive, enjoyable experience while visiting my site. Thank you for considering Bricktowntom's Market Place. I appreciate the trust you have placed in me!!
Understanding the WordPress Theme Structure

Understanding the WordPress Theme Structure

Editor’s Note: This article on the WordPress theme structure was first published on October 5, 2015. It was updated on October 24, 2018.

Understanding the WordPress theme structure is an important part of the front-end development process.  The files of a WordPress theme work together to create the design and functionality of a WordPress site, which makes them a powerful feature in website development. Combined with WordPress’s powerful platform architecture, its robust themes allow for limitless customization.

WordPress lists four key benefits of WordPress Themes:

  1. Themes separate the presentation and display from the system files or the actual content so that you can change the visual presentation with minimal issues.
  2. Themes often have robust settings to enable or disable additional functionality built into the themes. Theme designers will often include the means to include galleries or sliders.
  3. Themes often have settings to modify the design and layout of the site easily.
  4. Well-developed themes remove the need for WordPress administrators to learn CSS, HMTL or PHP to make site modifications.

Understanding the core components of WordPress

The default installation of WordPress consists of core components that are broken into a wp-config.php file, a wp-content directory, and a MySQL database. Themes, plugins and all uploaded assets are nicely stored within the wp-content folder, with themes in the appropriately named themes directory.

If you decide to install a theme using WordPress’s theme browsing or upload mechanism, the theme is transferred using a zip file, then uncompressed into the themes folder. Each theme has a unique folder name, but you’ll find a consistent naming convention applied to the files within.

All documentation on the WordPress theme structure can be found on WordPress’s Theme Development micro-site. If you’re familiar with PHP and expecting to customize and develop themes or child themes, I’d also recommend reviewing WordPress’s PHP Coding Standards. PHP often allows for some sloppy programming that can wreak havoc when trying to troubleshoot errors with your WordPress Theme.

WordPress theme files

Believe it or not, WordPress only requires two files for a theme. The first file is a style.css file that describes the WordPress theme. WordPress reads the theme description using a series of comments that start the stylesheet:

/*
 Theme Name:   My Theme Name
 Theme URI:	http://www.dknewmedia.com/
 Description:  This is the custom theme I'm developing
 Author:   	DK New Media
 Author URI:   http://www.dknewmedia.com/
 Version:  	1.0.0
 License:  	GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:     	godaddy, theme
 Text Domain:  mytheme
*/

The additional file needed is the index.php file that contains your Loop to display the content published in WordPress.

WordPress template structure

Not all WordPress Template files contain every element of your design. As you look at a common site, you’ll notice that there are four basic sections of a common page:

  1. Content — the content that you’re producing specific to that page, post or archive.
  2. header.php — the common design at the top of each of your pages, posts or archives.
  3. footer.php — the common design at the base of each of your pages, posts or archives.
  4. sidebar.php — the common design on the side of each of your pages, posts or archives.
  5. searchform.php — the search form used within your template.
  6. {part}.php — this can be any custom part used throughout your template, perhaps a call-to-action or a secondary sidebar.

WordPress website template pages

While WordPress started as a blogging platform, writing posts isn’t a necessary step in publishing a WordPress website. If you’re not planning on using WordPress for blogging, the following template files can be customized for specific designs:

  1. 404.php — a design for when your content is not found, known as a 404 status error.
  2. front-page.php — used if you’re designating a static page in your WordPress > Settings > Reading settings.
  3. home.php — the default design for your home page.
  4. page.php — the default page design.
  5. page-{slug}.php — will apply this template design to the page with the matching URL slug.
  6. search.php — the default search results page design.

WordPress blog template pages

If you’re going to blog as well, you have many more theme template options that you can develop:

  1. archive.php — the default design to display posts by category, by author, or by date if no other templates are designed.
  2. archive-{post-type}.php — if you’re implementing Custom Post Types, this is how you can customize the design for the archive listing.
  3. attachment.php — the default design to display an attachment that’s been uploaded to the media library (other than an image).
  4. author.php — the default design for a single author.
  5. category.php — the default design to display posts for a category.
  6. comments.php — the default commenting template used throughout the blog.
  7. date.php — the default design to display posts by date, if used in the permalink structure.
  8. image.php — the default design to display an image that’s been uploaded to the media library.
  9. single.php — the default design for a single post.
  10. single-{post-type}.php — if you’re implementing Custom Post Types, this is how you can customize the design for the single version.
  11. tag.php — the default design to display an archive of posts by tag.
  12. taxonomy.php — the default design to display an archive of posts by a custom taxonomy.

Pro tip: Don’t forget to add a screenshot to view your theme within the theme browser in WordPress > Appearance > Themes. The image is a png format and is 880 pixels tall by 660 pixels wide.

WordPress child themes

Perhaps one of the lesser-known features of the WordPress theme structure is the ability to build child themes that adopt another theme in its entirety. We’ve assisted many clients who hired an agency to develop a theme for the client by starting out with a licensed, purchased theme. However, the agency jumps right in and begins editing the purchased theme to customize it for their client. Editing a licensed theme is a terrible practice!

You can create a child theme easily by adding another theme directory, index.php file, and style.css with a reference to the parent theme:

/*
 Theme Name:   My Child Theme Name
 Theme URI:	http://www.dknewmedia.com/
 Description:  This is the custom child theme I'm developing
 Author:   	DK New Media
 Author URI:   http://www.dknewmedia.com/
 Version:  	1.0.0
 Template: 	parent-theme-directory-name
 License:  	GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:     	godaddy, childtheme
 Text Domain:  mychildtheme
*/

By building a child theme, you only have to include the parent theme files that you wish to customize within your child theme directory. And by never editing the parent theme, you’re able to update that theme if or when its author releases a new version. This often happens as a response to WordPress changes, security issues or bug fixes.

Additional files and folders in the WordPress theme structure

As long as you don’t create files that do not conflict with the reserved filenames above, you can add as many subdirectories and files as you’d like. A common example is adding an alternative page template to the WordPress theme structure. A page template is simple to create — just add a uniquely named PHP file with the following comments in the header:

<?php
/*
Template Name: Unique Template Name
*/
?>

Now you can apply that page template using the editing options on the page you create.

Theme developers also add additional subdirectories within their theme, including js (for scripts) and images for images specific to your theme. More robust theme developers often have directories for additional CSS, theme design frameworks, and even language subdirectories if they are looking to translate the theme. WordPress also supports right-to-left languages using an rtl.css file in your theme’s root directory.

There are thousands of free and premium themes available for WordPress. You can, of course, see many of them in the WordPress.org theme directory and in GoDaddy’s free list of WordPress themes for Managed WordPress Hosting customers.  And, using the files and tips noted here, you can tailor them to meet your exact needs.

The post Understanding the WordPress Theme Structure appeared first on Garage.

Source: Go Daddy Garage

 

Loading......
 

Republished by Blog Post Promoter