我想在我的网站内创建一个博客,但我已经创建了自定义页面但是当我发布带有“博客”标签的帖子时,它们也出现在我的索引中,我只想在我的页面上看到它们叫做Blog.php。我怎么能这样做?
这是我的模板代码
<pre>
<?php
/*
template name: Blog
*/
?>
<?php get_header(); ?>
<div class="switch">
<div class="switch-left">
<span style="text-shadow:0 1px 23px #ff0000;color: #000;">Blog de Noticias</span>
</div>
< /div>
<div class="main section" id="main">
<div class="widget Blog" id="Blog1">
<div class="blog-posts hfeed">
<?php query_posts('tag=Blog'); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post bar hentry">
<h3 class="post-title entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="post-header-line-1"></div>
<div class="post-body entry-content">
<div class="box-peli">
<span style="float:left; padding:0px 10px 5px 0px;">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if ( has_post_thumbnail() ) {
$foto = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'medium' );
$src = $foto['0'];
echo '<img src="'.$src.'" class="alignnone" alt="'.get_the_title().'" width="114" height="170">';
}else{ ?>
<img src="<?php bloginfo('template_url');?>/images/no-image.jpg" class="alignnone" alt="<?php the_title();?>" width="114" height="170"/>
<?php }?>
</a>
</span>
</div>
</div>
<div style="clear: both;"></div>
</div>
<?php endwhile; endif; ?>
</div>
<div class="blog-pager" id="blog-pager">
<?php if(function_exists('pagenavi')) { pagenavi(); } ?>
</div>
<div class="clear"></div>
<?php if(!is_paged()) { ?>
<div id="slide-wrapper">
<div class="slide section" id="slide">
<div class="widget HTML" id="HTML4">
<div id="maskolis">
<?php get_template_part('postsByTag');?>
</div>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
<?php get_footer();?>
答案 0 :(得分:0)
<?php
query_posts( array ( 'category_name' => 'category-slug-name-goes-here', 'posts_per_page' => -1 ) );
?>
使用此代码代替
<?php query_posts('tag=Blog');
它很接近但不完全存在,让我知道它是如何为你效力的。
来自你的代码:
<?php query_posts('tag=Blog'); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
实现目标:
<?php query_posts( array ( 'category_name' => 'category-slug-name-goes-here', 'posts_per_page' => -1 ) );
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
查看你的WordPress,你的slug应该像“博客”或“博客”,如果它不正确它将无效。它并不完全像在WordPress中显示的那样会显示像“Home Blog”这样的东西但是slug是“home-blog”。确保找到正确的slug。