Hello i have created a php page called catergory-28.php to call in my portfolio catergory which consists of to children (my vidoes and my designs). I would like to know how to make it so it shows my vidoes then my design posts. Thanks in advance.
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header(); ?>
<div class="catpost";>
<h2>My Portfolio<p></h2><small>Hello</small>
</div>
<div id="content" class="musiccolumn" role="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="designpost" id="designpost-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<small>my portfolio</small>
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<?php if(function_exists('wp_page_numbers')) { wp_page_numbers(); } ?>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
<?php get_footer(); ?>