我从事WordPress项目,我在一个名为testimonials.php的特殊文件中创建了推荐书,然后我通过get_template_part在关于我们的页面上调用了该文件,它可以正常工作,但是当我调用(testimonials.php)到主页时却没有显示输入的所有部分。
使用高级自定义字段插件
此代码
<!-- Start Section Testimonials -->
<section class="testimonials section-padding">
<div class="carousel-right col-lg-7 col-md-7 col-sm-7 col-xs-12">
<div class="owl-carousel">
<?php $testimonials = array ('post_type' => 'Testimonials' , 'order' => 'ASC');
$query = new wp_query($testimonials);
if ($query->have_posts()) {
while ($query->have_posts()){
$query->the_post(); ?>
<!-- Start Item 1 -->
<div class="testimonials-item">
<!-- Testimonials Text -->
<div class="testimonials-text-item">
<?php the_content(); ?>
</div>
<!-- Testimonials Title -->
<div class="testimonials-title clearfix">
<!-- Title Img -->
<div class="title-img">
<img src="<?php the_field('image'); ?>" alt="testimonials">
</div>
<!-- Title Text -->
<div class="title-text">
<h3><?php the_title(); ?></h3>
<p><?php the_field('small_title'); ?></p>
</div>
</div>
</div>
<!-- End Item 1 -->
<?php }} ?>
</div>
</div>
<?php wp_reset_postdata(); ?>
<!-- Start Title -->
<?php $testimonials = get_field('testimonials'); ?>
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-5 col-md-5 col-sm-4 col-xs-12">
<div class="testimonials-text clearfix">
<div class="title">
<span><?php echo $testimonials['small_title']; ?></span>
<h2><?php echo $testimonials['main_title']; ?></h2>
</div>
<div class="text-p">
<?php echo $testimonials['description']; ?>
</div>
</div>
</div>
</div>
</div>
<!-- End Title -->
</section>
不出现的部分 所有输入
<span> <? php echo $ testimonials ['small_title']; ?> </ span>
<h2> <? php echo $ testimonials ['main_title']; ?> </ h2>
<? php echo $ testimonials ['description']; ?>
答案 0 :(得分:1)
如果您在单个页面中使用过此方法,则效果很好;如果您需要在首页中使用它,则需要在ACF函数中添加页面ID,例如
$testimonials = get_field('testimonials',the_ID);
答案 1 :(得分:0)
1-根据您的代码,get_field('testimonials')必须是一个数组,因此最好的方法是为该函数提供默认值数组,例如:
$testimonials = get_field('testimonials', array(
'small_title' => '',
'main_title' => '',
'description' => ''
));
因此,如果字段不是数组或为null,则可以通过这种方式设置默认值,因为某些时候,如果数据库中没有当前记录的数据,此函数将返回null。
2-以下字符串通过给定的键获取数组$ testimonials值:
echo $testimonials['small_title'];
echo $testimonials['main_title'];
echo $testimonials['description'];
但是如果键在$ testimonials数组中不存在呢? 您需要将PHP函数isset()与速记条件 if 语句一起使用,以避免警告消息或破坏html代码。
这是正确的方法:
echo isset($testimonials['small_title']) ? $testimonials['small_title'] : '';
echo isset($testimonials['main_title']) ? $testimonials['main_title'] : '';
echo isset($testimonials['description']) ? $testimonials['description'] : '';
我希望这可以帮助您解决问题