0

我已经安装了 Mintthemes 的 WordPress 插件 Isotope。但我不让它工作。我在 page.php 中设置了以下代码片段,并填写了使用自定义帖子类型的可选设置。

<?php moveplugins_isotopes(); ?>

向我的自定义帖子类型投资组合项目添加了类别,但它不起作用。

我的代码:

<?php moveplugins_isotopes(); ?>

<ul class="entrybox">
<?php 
    $args = array('post_type' => 'portfolio');
    $loop = new WP_Query($args);
?>

<?php if ($loop->have_posts()) : while ($loop->have_posts()) : $loop->the_post(); ?>

    <li class="grid_4 portfolio-post">
    <a href="<?php the_permalink(); ?>">
    <div class="thumbnail">
        <img src="<?php print IMAGES; ?>/portfolio/thumbnails/thumbnail.png" alt="Thumbnail">
    </div><!-- End .thumbnail -->
    </a>

    <div class="description">
        <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
        <?php the_excerpt(); ?>
    </div><!-- End div.description -->
    </li><!-- End li.grid_4 projectbox -->

<?php endwhile; ?>
<?php endif; ?>
</ul><!-- End ul.entrybox -->
4

1 回答 1

0

问题是您的 li 没有使用 WordPress 中的 post_class 函数。它使用 post_class 来识别循环中的项目。

它应该是这样的

<li class="<?php post_class( array('grid_4', 'portfolio-post') ) ?>">

您可以在此处了解更多信息:http: //codex.wordpress.org/Function_Reference/post_class

于 2013-05-07T17:52:57.913 回答