Re-Use Common Elements the Easy Way with Wordpress's get_template_part() Function

Reusing code is one of the strengths of modern coding techniques. It simplifies your theme files and speeds up the development process by not having to constantly rewrite code. WordPress has a few standard includes built in, such as get_header(), get_footer(), and get_sidebar(). However, since WordPress 3.0 you can easily create your own custom includes using the get_template_part() function.


What are Includes and why should I use them?

Includes as Puzzle Pieces

For those of you not familiar with includes, the concept is pretty simple. Think of it as different pieces of a puzzle being put together to make a whole picture.

The main advantage of using includes is that you can modify a single piece of code and have the changes display throughout the site without having to modify every page.

They’re also used to reduce the amount of code that needs to be written or modified, since you can re-use the same piece of code in multiple locations.

In addition, includes can be used to simplify a complex page of code by separating it into smaller chunks.

For theme developers, custom includes can be very useful in creating your own custom page templates. If the the template design requires a different sidebar or header to be used, creating the file as a custom include can be more useful than editing the main sidebar file.


Creating and using a custom include

So, now that we have the basics of what an include is all about, let’s go through a quick exercise in creating our own with WordPress’s get_template_part(); function.

For this example, we’re going to create a custom sidebar to use on the 404 page of WordPress’s default twentyten theme.


Step 1: Create the custom sidebar file

Create a new, blank document using your favorite code editor and add the following code:

This provides us with the base div for the sidebar using the ID’s and classes that work with the twentyten CSS file.

Next, add the following code between the ul tags to add a search form:

After the search li, we’re going to add a list of all the site pages:

Once you’ve added all the code, your completed sidebar code should look like this:


File Name Structure for get_template_part();

Before we get into naming and saving the include file, we need to understand how naming your file is important to get_template_part();

Include file names adhere to the following format:

The concept behind the name of the file can be a little difficult for newcomers to grasp, but it’s pretty simple when you break it down:

“slug”

The slug is the generic or general name of the file. Think of the slug as the category or type of file to be included. For example, if we’re creating a file that is a sidebar, we might give it a slug of “sidebar”. Same can be said if the include file we’re creating is a type of footer, we might give it a slug of “footer”.

Now, multiple files can have the same slug and are distinguished from each other using a second parameter called a “name”.

“name”

The second parameter of a file name or “name” is the unique identifier for that specific file.

So, let’s say we’re going to create a sidebar to be used only on the 404 page.
In this case we might name our include “sidebar-errorpage.php”.

This tells the system that the file is a “sidebar” and has a name of “errorpage”.

You can use any unique combination of slugs and names as long as they’re in the format of:

For example “dodad-lower.php” or “dodad-upper.php”.


Step 2: Name the file

Save the file

Now that we understand how to name our file, let’s get back to our exercise and save our custom sidebar.

Go back to your editor and save it to the twentyten theme folder as:

NOTE: It is important to save it to the theme’s root folder and not the site root folder, otherwise, WordPress won’t be able to find it.


Step 3: Including your file on a template page

Once we have the include file named and saved to the twentyten theme folder, let’s include it on the 404.php page template.

We include a file on a page with the following function (with generic variables added):

To use this function, we simply replace $slug with the slug we used to save our file and $name with the name we used to save the file.

Open up the twentyten 404.php page and add the following code just above the get_footer(); function:

As you can see, it has the slug and the name we used in the file to tell the function which file to use.

Here’s the whole code for that page with our include function near the end of the code:

Save the 404.php template page with the edits we’ve made.


Step 4: Upload and check your work.

404 Page with new sidebar

After you’ve saved your 404.php and sidebar-errorpage.php file, it’s time to see if it worked.

Upload both the 404.php and sidebar-errorpage.php to your server and enter a url in your site that you know does not exist to get to the 404 error page.
For example: http://www.yoursite.com/tieowkf

If all worked well, you should see the sidebar with only the search and the page listing we just created.

Then, if you navigate to any other page on the site, you should see the standard sidebar on those pages.

If you see nothing at all, check the following to make sure there were no mis-steps along the way:

  • The include file is named sidebar-errorpage.php.
  • The include file is saved to the twentyten theme folder.
  • The include file is uploaded to the server.
  • You entered the “slug” and “name” correctly in the get_template_part(); function.

Conclusion

There are many ways of including files in a WordPress document, however using WordPress’s built-in get_template_part(); function will help keep your files organized and clean by using a common WordPress taxonomy and structure.

There are much more powerful and complex ways to use this function to include our files, but this gives you a base to get you started.

I encourage you to check out the code of the twentyeleven theme included in WordPress to see other ways you can use this code.

 

Tags:

Comments

Related Articles