I’m new to template editing in wordpress and I’m trying to get a page description to show up on my site but it is not appearing. The URL I’m trying to get to display the description is here:
http://fourwallsla.com/category/the-neighborhood/east-side/
and I’ve attached the screenshot of the page description within wordpress. It appears to be using the archive template (why is it not using the page template?).
Here’s some of the code for the archive template:
<div class="main">
<?php if (have_posts()) : $first = true; ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h1><?php single_cat_title(); ?></h1>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h1><?php single_tag_title(); ?></h1>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h1><?php echo get_the_time('F jS, Y'); ?></h1>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h1><?php echo get_the_time('F, Y'); ?></h1>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h1><?php echo get_the_time('Y'); ?></h1>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h1><?php _e( 'Author Archive', 'gray_white_black' ); ?></h1>
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<h1><?php _e( 'Blog Archives', 'gray_white_black' ); ?></h1>
<?php } ?>
<ul class="post-list">
<?php while (have_posts()) : the_post();
Where, in the code above, the_post(), appropriately, refers to the content for the home listing within the category displayed on the page. But how do I get the_post() for the page itself, shown in the screenshot? Thanks.

It is using the archive.php template because you are retrieving all posts within the category – ‘In The Neighborhood’ & ‘East Side’. If you want it to use the default page.php you would have to publish a page in Wordress.
To print the description (“Test Description”) or the content of the post, add
<?php the_content(); ?>or<?php the_excerpt(); ?>after: