Dear friends, can I have only a category post in a home page blog box area? website link: http://cim.unipv.eu/ ---------------------------------------------- Inkthemes code $args = array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 2, ); ------------------------------------------------ My code: $args = array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 2, 'category' => 1, ); ------------------------------- but the code is not right. Bast regards Dante
Hi, Please use below code instead of yours.. 'category_name' => 'your category name' It will resolve your issue.. Thanks & Regards! Priyanka InkThemes.com
Dear Priyanka, I would like a blog post area with: 'orderby' => 'title', and 'orderby' => 'ASC', Is my code correct in home page? Thanks and regards Dante ---------------------------------------------------------------- $args = array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 2, 'category_name' => 'NEWS', 'orderby' => 'title', 'orderby' => 'ASC', ); --------------------------------------------------------------- Can you write me the code for the category page? ---------------------------------------------------------------- <?php if (have_posts()): while (have_posts()): the_post(); get_template_part('content'); endwhile; endif; foogo_pagination(); ?> --------------------------------------------------------------- Thanks and regards Dante
Hi, Code should be like.. $args = array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 2, 'category_name' => 'NEWS', 'order' => 'ASC', 'orderby' => 'date', ); Thanks & Regards! Priyanka InkThemes.com
Dear Priyanka, I wold like a orderby title. Can you write the code please? --------------------------------------------------------------- Can you write me the code for the category page? ---------------------------------------------------------------- <?php if (have_posts()): while (have_posts()): the_post(); get_template_part('content'); endwhile; endif; foogo_pagination(); ?> --------------------------------------------------------------- Thanks and Regards Dante