我正在为mediumish theme开发bludit的版本。
默认情况下,主题在首页上显示页面第一部分中所有文章的列表。我想显示一个特定类别的文章列表。
我尝试添加与正确类别匹配的if
条件,但是我可能错了。
这是我尝试过的:
<?php if ($WHERE_AM_I == 'home'): ?>
<!-- Begin Featured
================================================== -->
<section class="featured-posts">
<div class="section-title">
<h2><span>La structure</span></h2>
</div>
<div class="card-columns listfeaturedtag">
<?php if ($category->key() == 'structure'): ?>
<?php
// Get the first and second page from the content
$featured = array_slice($content, 0, 2);
$content = array_slice($content, 2); ?>
<?php endif; ?>
<?php
foreach ($featured as $page):
?>
<!-- begin post -->
<!-- Here goes the code for each post -->
<!-- end post -->
<?php endforeach; ?>
</div>
</section>
<!-- End Featured
================================================== -->
<?php endif; ?>
我希望它显示来自structure
类别的文章,但是页面上什么也没有。
Here是一些有关bludit中类别的摘要。
答案 0 :(得分:0)
好吧,我发现了该怎么做:
find - exec mklabel