0
我已經安裝了Mintthemes的WordPress插件同位素。但我沒有得到它的工作。我在我的page.php中設置了下面的代碼片段,並且填充了自定義帖子類型使用的可選設置。如何獲得同位素Wordpress插件mintthemes工作?
<?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 -->
做你把它放在上述循環? –
@DavidChase是的,我把函數放在循環上面。我將使用這個我的自定義帖子類型 - 投資組合。 – Caspert
@DavidChase這是標記的樣子:http://snippi.com/s/y0qqvc9 – Caspert