What do you do when your blog covers more than one topic (let’s say, Recruitment SEO and guides on how to install Ubuntu), while your audiences all hang around on different social media sites? Seeing a Sphinn logo in the top left of your content isn’t exactly appropriate when you’re targeting Digg, right? To solve that problem, you could use multiple page templates to help improve your Diggs or Sphinns.
As part of a series of articles on advanced Wordpress SEO, I’m going to show you how to create multiple page templates that feature different social media buttons in your top left hand corner. Take a look at these two different page types to get an idea of what I’m upto.
We’re going to create a new page template specifically to display the Sphinnit button, and repeat the process to create a page template for the Digg this button.
How to create a new page template in Wordpress
We’re going to copy your page.php file, rename it, and use a little bit of PHP to tell wordpress there’s an extra page template available, which will display in the “Page Template” drop down in the page editor. Here’s what it looks like:

1) FTP to your Wordpress host and navigate as follows:
public_html>wp-content>themes>your-theme
2) Copy page.php and stick it on your desktop.
3) Open the file in notepad or dreamweaver for editing.
There’s a clever little bit of php you need to insert at the very top of the file, which can be used to name the template you’re creating. Without a name, Wordpress assumes that the new file you’ve created is a default template which is not great for your pages or Wordpress!
In this example, I’ve given my page template the rather imaginative title of “SEO-Content-page”. The code looks like this:
<?php
/*
Template Name: SEO-Content-page
*/
?>
Insert it before the <?php get_header(); ?> tag.
4) Let’s finish the SEO content page. Remember the Sphinnit button? the code you need to insert into your new SEO-page.php file is as follows:
<?php show_sphinnit(); ?>
Place this code directly before the_content tag, so it looks like this:
<?php show_sphinnit(); ?><?php the_content(); ?>
When you’ve inserted your code, save the page.php file with a new filename, say, SEO-page.php and copy it back into your theme directory via FTP. don’t forget that your Sphinnit logo will display wherever you have set it to via the plugin settings in your wp-admin.
You now have two versions of a page template. One for SEO content and the original, untouched page.
If it’s useful, I’ve uploaded the code for my SEO-page.php which you can download here. Note I’ve created a table which has stumbleupon, reddit, mixx and digg this buttons.
When you’re ready to create a new page specifically for Digg, repeat the steps above. When you’re ready to insert your code, including the top left alignment, the Digg this button code looks like this:
<div style="float: left; margin-right: 10px; margin-bottom: 2px;">
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
Here’s the full page code for my Digg page. Hope you find it useful!











14 Comments
I sphunn your article, but I also thought I’d post here that if you’re creating multiple templates only to accomodate this one change, you might be more interested in conditional tagging, which basically says:
[insert details for this category]
[insert details for other categories that dont fit into the previous description]
That’s not verbatim, but that’s the general idea. I believe the WP codex explains this in pretty decent detail, though. You can always e-mail me if you have any questions.
Hi there – thanks for your Sphinn! I actuall covered conditional tagging here – your suggestion is great but for the application I’m referring to it certainly makes a lot of sense to have a few extra page templates.
These are really great pointers Rich..^^ thank you so much for being so generous.
Great tutorial! I definitely think that blogs that receive a lot of traffic should implement the social media buttons because it can be a great way to add some extra votes.
Hi Richard,
I actually picked this up through Sphinn. It’s a good article, although as a comment on Sphinn points out, it’s only useful for pages. Most bloggers will be using posts.
Personally, I think the use of Custom Fields is the best way to go. Edit your theme so it checks for the presence of a Custom Field and shows the appropriate social media buttons depending on the setting of that field. Then you just need to add a Custom Field to a post that you want the buttons to appear and hey presto.
That would be a great article if you write up how to do that!
Please note, the above article is great too, I know this sounds a little negative, but a post solution would be even better.
@stephen_Cronin @Erika – You both hit the nail right on the head. Since Erika’s comments on conditional tagging for the single.php pages I’ve been working on a revision article. Thanks all for your comments and really appreciate you dropping by
Hi i have a blog site, Can i get good PR without listing my site in Web directories like Yahoo?
I am planning to put my links in paid PR>5 sites. Will that be sufficient to get good PR?
To get PR>4, How many PR>5 sites should be having my site’s link?
Thanks in Advance.
Hello..
I created page template as shown below:
Links:
but it didn’t show up in Page Template list, can anybody help me please. Thanks a lot!
sorry the code disappear
Links:
Thanks!
Yeah thanks because you’re trying to paste .php code into my comments! It sounds like you’re not naming the new page properly. Are you adding the template name code?
DAESH ONOTOLE V PRAVITELI VSELENNOI!
Hi. A bit off-topic, but this seemed to be the closest thing I could find to a post dealing with my question, which is: how do i give my new pages comment fields? at the moment they don’t come up with them and i’m a bit nervous about using the custom fields.
thanks – sorry to bother you
R
Thanks for a nice and informative site. Somehow I was drawn to reading the post and I learned a lot. Have a nice day!
Great article – just what I was looking for