php - View single post from list of posts in certain category Wordpress -
php - View single post from list of posts in certain category Wordpress -
i've got script generates posts have particular category tag (see below).
<?php function create_slug($string){ $slug=preg_replace('/[^a-za-z0-9-]+/', '-', $string); homecoming $slug; } $category = strtolower(create_slug(single_cat_title('', false))); $args = array( 'post_type' => 'research-case', 'orderby' => 'date', 'order' => 'desc', 'posts_per_page' => 6, 'category_name' => $category ); query_posts($args); ?> <?php while ( have_posts() ) : the_post(); ?> <hr /> <article class="item"> <a href="<?php the_permalink(); ?>"> <h3 class="title-news"><?php the_title(); ?></h3></a> <p><?php the_excerpt(); ?></p> <p><a class="btn btn-primary" href="<?php the_permalink(); ?>"><?php echo __('view details' , 'roots'); ?> »</a></p> </article> <?php endwhile; wp_reset_query();?>
however, when click on particular post link provided the_permalink();
method website throws 404 error. believe need template file pull content individual post. know how done?
php wordpress
Comments
Post a Comment