我有一个特定的帖子显示,每一篇帖子我都会单击“转到单个页面”,这会显示帖子的更多详细信息。但我有不同的模板的帖子详细信息,这将显示在单个页面。
<?php query_posts(\'post_type=posts&category_name=design\'); while(have_posts()): the_post(); ?>
<a href="<?php the_permalink(); ?>">Details</a>
<?php endwhile; wp_reset_query(); ?>
现在是单身。php我想创造一个条件,使\\u permalink可能会通过一个弹头?然后我可以为设计细节添加模板。
仅有一个的php
<?php get_header();
$categorySlugName = single_cat_title(true);
if($categorySlugName == \'design\'){
include \'design-details.php\';
}
?>