我在我的网站上有一个自定义帖子,我只想自定义帖子类型的所有帖子都应该发布在单独的page 哪个是“博客”,这可能吗?
代码有效,我编辑了代码这是我的代码:
<?php
/*
Template Name: Blog template
*/
get_header();
$blog_query = new WP_Query;
$blog_query->query( \'post_type=uni\' ); // <-- Your args on this line
?>
<div id="content" class="col-full">
<div id="main" class="col-left">
<?php if( $blog_query->have_posts() ) : ?>
<?php while( $blog_query->have_posts() ) : $blog_query->the_post(); ?>
<div class="featured post">
<h2 class="title fl"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h2>
</br>
<p class="fr">
<span class="small"><span class="post-category"><?php the_category(\' \') ?></span></span>
</p>
<p class="post-meta">
<span class="small"><?php _e(\'Featured Venue |\', \'woothemes\'); ?></span>
<span class="comments"><?php comments_popup_link(__(\'0 Reviews\', \'woothemes\'), __(\'1 Review\', \'woothemes\'), __(\'% Reviews\', \'woothemes\')); ?></span>
</p>
<div class="entry">
<?php the_excerpt(); ?>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>
</div>
</div>
<?php
get_footer();
但当我点击博客页面的标题时,它会将我带到一个页面,在该页面上,帖子的内容没有div标记,并在主页上的菜单上检查此图像
在这张图片中,一切看起来都很好,这就是我想要的
在这里,当我点击帖子,即标题时,它是这样来的
检查此图像菜单指向主页,没有div
在帖子中添加标签