wordpress – posts by category olatechproFebruary 15, 20231 Views in wordpress how to display posts by category in sidebar? Post Views: 1 Related postsGet rid of this Strict Standards warningWooCommerce: get_current_screen not working with multi languageCan’t login on WordPressForce HTTPS using .htaccess – stuck in redirect loopWordPress: Ajax not working to insert, query and result dataHow Can I pass an image file to wp_handle_upload?
Try this plugin for listing the category posts as widget for your 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;?> Log in to Reply
sidebar.
Category Posts Widget