Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Different Sidebars for WordPress Re: Different Sidebars for WordPress

#53821
louckster
Member

So I created a file called sidebar-about.php and I put in the following:

<?php
/*
Template Name: Sidebar About
*/
?>

<?php get_header(); ?>

<div id="content-right">

<h1>General Information</h1>

<p><strong>Name:</strong> Jason Loucks<br />
<strong>Date of Birth:</strong> October 18, 1982<br />
<strong>Age:</strong> Twenty-six (26)<br />
<strong>Birthplace:</strong> Gloversville, New York<br />
<strong>Location:</strong> United States</p>

</div><!– END right-col –>

<?php get_footer(); ?>


When i view the about page all I get is the sidebar. Should I add the entire about coding?