wordpress - posts by category -


in wordpress how display posts category in sidebar?

  1. try plugin listing category posts widget sidebar.

category posts widget

                               [or]   <?php query_posts('category_name=your-category-name&showposts=5&order=asc'); ?> <?php while (have_posts()) : the_post(); ?> <h2 class="head1"><?php the_title(); ?></h2>    <?php the_content(); ?> <?php endwhile;?> 

Comments

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -