我用过Devin Says'团队帖子类型作为自定义帖子类型的基础,具有自定义元:https://github.com/devinsays/team-post-type。除了语言更新和添加的字段之外,我的插件几乎没有变化。
当我输出我的帖子时,循环中后续帖子为空的自定义元值取以前帖子的值。所以 - 如果自定义元电话'电话' Post One的设置为' 555-555-5555'以及'电话'对于Post Two没有设置,在我的循环中,它显示&#; 555-555-555'。
所以 - HTML输出(例如)看起来像:
<section>
<h2>Person 1</h2>
<p>555.555.5555</p>
</section>
<section>
<h2>Person 2</h2>
<p>555.555.5555</p>
</section>
...即使数据库中没有人员2的电话号码。
我发现这个类似的问题有相同的症状,但没有看到一个解决方案&#39;这对我有帮助 - 陈述的建议是我已经做过的事情,而且我没有看到我将数据调用到页面的方式存在重大差异:Values from custom meta boxes being repeated in posts
有没有人对此问题有任何建议?
我尝试使用以下内容输出帖子:
add_shortcode('staff-list', 'jpro_staff_list');
function jpro_staff_list($atts) {
extract(shortcode_atts(array(
), $atts));
$args = array (
'post_type' => array( 'staff' ),
'posts_per_page' => '-1',
'orderby' => 'menu_order',
'order' => 'ASC'
);
$query = new WP_Query( $args );
$staff_list = '<div class="jpro-staff staff-list container">';
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
$post = get_post($id);
$postID = $post->ID;
$image = get_the_post_thumbnail( $postID, 'medium', array( 'class' => 'aligncenter' ));
$name = get_the_title($postID);
$bio = apply_filters('the_content', $post->post_content);
$title = get_post_meta($postID, 'staff_title', true);
$video = get_post_meta($postID, 'staff_video', true);
$email = get_post_meta($postID, 'staff_email', true);
$phone = get_post_meta($postID, 'staff_phone', true);
$fax = get_post_meta($postID, 'staff_fax', true);
if(!empty($image)){
$output_image = '<div class="staff-list image">'.$image.'</div>';
}
if(!empty($name)){
$output_name ='<h3 class="staff-name staff-list">'.$name.'</h3>';
}
if(!empty($bio)){
$output_bio ='<div class="staff-bio staff-list">'.$bio.'</div>';
}
if(!empty($video)){
$output_video ='
<div class="staff-video-container">
<iframe class="staff-video staff-list" src="//www.'.$video.'" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen">
</iframe>
</div>';
}
if(!empty($title)){
$output_title ='<li class="staff-title staff-list">'.$title.'</li>';
}
if(!empty($email)){
$output_email ='
<a href="mailto:'.$email.'">
<li class="staff-email staff-list"><i class="fa fa-envelope"></i> '.$email.'</li>
</a>';
}
if(!empty($phone)){
$output_phone ='
<a href="tel:'.$phone.'">
<li class="staff-phone staff-list"><i class="fa fa-phone-square"></i> '.$phone.'</li>
</a>';
}
if(!empty($fax)){
$output_fax ='<li class="staff-fax staff-list"><i class="fa fa-fax"></i> '.$fax.'</li>';
}
$staff_list .='<section class="jpro-staff staff-list">';
$staff_list .= $output_name;
$staff_list .= $output_video;
$staff_list .= '<ul class="staff-meta staff-list">';
$staff_list .= $output_image;
$staff_list .= $output_name;
$staff_list .= $output_title;
$staff_list .= $output_email;
$staff_list .= $output_phone;
$staff_list .= $output_fax;
$staff_list .= '</ul>';
$staff_list .= $output_bio;
$staff_list .= '</section>';
}
} else {
$staff_list .='<p>Ooops! No Staff Found.</p>';
}
$staff_list .='</div>';
wp_reset_postdata();
return $staff_list;
}
答案 0 :(得分:0)
从技术上讲,您的脚本可以正常运行。因为永远不会清除$output_xyz
变量,您的脚本会假定上一个循环中的值。
要么将if ( !empty (...) ) ...
更改为else
,请执行以下操作:
if ( !empty ( $phone ) ) {
$output_phone = '<a href="tel:'.$phone.'">...</a>';
} else {
$output_phone = '';
}
或清除每个循环开头的变量:
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
$output_image = '';
$output_phone = '';
...
}
}