
Untitled
By: a guest on
Mar 31st, 2011 | syntax:
PHP | size: 0.51 KB | hits: 124 | expires: Never
<?php get_header(); ?>
<?php
$wp_query->set('orderby', 'menu_order');
$wp_query->set('order', 'ASC');
$wp_query->get_posts();
?>
<?php get_posts("orderby=menu_order&order=ASC"); ?>
<?php if (have_posts()) : ?>
<h2><?php single_cat_title(); ?></h2>
<ol>
<?php while (have_posts()) : the_post(); ?>
<li>
<?php the_content(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link">
<?php the_title(); ?></a></li>
<?php endwhile; ?>
</ol>
<?php endif; ?>
<?php get_footer(); ?>