This is the code I have in the page template, but I get no posts shown on the page:
<?php /* Template Name: share template
*/ ?>
<html>
<?php get_header(); ?>
<?php
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$wp_query->query('category_name=share'.'&paged='.$paged);
?>
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<?php endwhile; ?>
<?php get_footer(); ?>