好的,非常简单的任务,我只是不擅长PHP。
我有一个页面,我想使用样式列表列出一些员工。这是页面 - http://www.themontessoripeople.co.uk/montesori/?post_type=people
我下载了“自定义内容类型”插件并添加了“人员”的内容类型并添加了相应的字段。现在我想过滤我在自定义字段“层次结构”中添加的帖子。
以下是我希望页面显示的方式 - http://i47.tinypic.com/oqymwh.jpg
自定义字段“层次结构”包含“management”,“babies_room”和“toddlers_room”的房间变量。
如何修改以下代码,按照<?php print_custom_field('hierarchy'); ?>
<?php $col = 1; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php if ($col == 1) echo "<div class=\"row\">"; ?>
<div class="post col<?php echo $col;?>" id="post-<?php the_ID(); ?>">
<div class="people-spacer">
<div class="people"><a class="animate" >
<div class="bio">
<p class="titles"><?php the_title(); ?><br/>
<span class="job"> <?php print_custom_field('job'); ?></span> </p><br />
</div>
<img src="<?php print_custom_field('staff_image:to_image_src'); ?>" width="160" height="160" alt="<?php the_title(); ?>-image" />
</div>
<div class="people-link-edit"><?php edit_post_link('Edit Post', ''); ?></div>
</div>
</div>
<?php if ($col == 1) echo "</div>"; (($col==1) ? $col=2 : $col=2); ?>
<?php endwhile; ?>
谢谢,Ben。
以下是工作代码,显示了两组过滤结果供参考 -
<?php $col = 1; ?>
<?php if (have_posts()) : ?>
<div class="text-box">
<h2>Management</h2>
<?php while (have_posts()) : the_post(); ?>
<?php if (get_custom_field('hierarchy') != "management") continue; ?>
<?php if ($col == 1) echo "<div class=\"row\">"; ?>
<div class="post col<?php echo $col;?>" id="post-<?php the_ID(); ?>">
<div class="people-spacer">
<div class="people"><a class="animate" >
<div class="bio">
<p class="titles">
<?php the_title(); ?>
<br/>
<span class="job"> <?php print_custom_field('job'); ?></span> </p>
<br />
</div>
<img src="<?php print_custom_field('staff_image:to_image_src'); ?>" width="160" height="160" alt="<?php the_title(); ?>-image" /> </div>
<div class="people-link-edit">
<?php edit_post_link('Edit Post', ''); ?>
</div>
</div>
</div>
<?php if ($col == 1) echo "</div>"; (($col==1) ? $col=2 : $col=2); ?>
<?php endwhile; ?>
</div><!-- close text box -->
<div class="text-box">
<h2>Babies Room</h2>
<?php while (have_posts()) : the_post(); ?>
<?php if (get_custom_field('hierarchy') != "babies_room") continue; ?>
<?php if ($col == 1) echo "<div class=\"row\">"; ?>
<div class="post col<?php echo $col;?>" id="post-<?php the_ID(); ?>">
<div class="people-spacer">
<div class="people"><a class="animate" >
<div class="bio">
<p class="titles">
<?php the_title(); ?>
<br/>
<span class="job"> <?php print_custom_field('job'); ?></span> </p>
<br />
</div>
<img src="<?php print_custom_field('staff_image:to_image_src'); ?>" width="160" height="160" alt="<?php the_title(); ?>-image" /> </div>
<div class="people-link-edit">
<?php edit_post_link('Edit Post', ''); ?>
</div>
</div>
</div>
<?php if ($col == 1) echo "</div>"; (($col==1) ? $col=2 : $col=2); ?>
<?php endwhile; ?>
</div><!-- close text box -->
答案 0 :(得分:1)
我简化了你的代码。过滤器也被添加:
<?php
$col = 1;
while (have_posts())
{
the_post();
if ($col == 1) echo "<div class=\"row\">";
// filter
$hierarchy = get_custom_field('hierarchy');
// if it does not match continue (skip)
if ($hierarchy != "boss") continue;
// if it matches continue (skip)
//if ($hierarchy == "notboss") continue;
// needed fields
$id = the_ID();
$job = get_custom_field('job');
$title = the_title();
$img = get_custom_field('staff_image:to_image_src');
$edit = edit_post_link('Edit Post', '');
echo <<< END
<div class="post col$col" id="post-$id">
<div class="people-spacer">
<div class="people"><a class="animate" >
<div class="bio">
<p class="titles">$title<br/>
<span class="job">$job</span> </p><br />
</div>
<img src="$img" width="160" height="160" alt="$title-image" />
</div>
<div class="people-link-edit">$edit</div>
</div>
</div>
END;
if ($col == 1) echo "</div>";
(($col==1) ? $col=2 : $col=2);
}
?>
编辑:get_custom_field而不是print_custom_field。
答案 1 :(得分:0)
您可以在query_posts($args)
中定义查询参数 - 查看query_posts。也许你可以尝试get_posts