元值=== 1的字符串偏移量非法

时间:2019-04-07 17:04:04

标签: php wordpress post-meta

我希望o在检查帖子的元键值是否=== 1后显示来自自定义帖子的帖子。但是我收到错误消息“合法字符串偏移量'isAirConditioning'”。我做错了什么?

我创建了一个名为“ Works”的自定义帖子。在此自定义帖子中,我制作了一个meta框,可让我标记要分配给空调,制冷或回收的工作。然后在页面模板上,我运行一个if语句来检查我当前在哪个页面上以显示正确的作品。如果我在空调工作页面上,则传递一个查询以从此自定义帖子中获取所有带有meta的帖子,然后进行第二次if语句检查$ meta ['isAirConditioning'] ==='1 '。

 <?php
    $classes = get_body_class();
    if(in_array('page-id-233', $classes)) {
      echo '<p>do something</p>';
    }
    elseif(in_array('page-id-239', $classes)) {
      echo '<ul>';
       $args = array('post_type' => 'works', 'orderby' => 'date', 'order' => 'ASC', 'showposts' => 100);
       $the_query = new WP_Query($args);

       while ($the_query->have_posts() ) : $the_query->the_post();

       $meta = get_post_meta( $post->ID, 'portfolio_details', true );

       if ($meta['isAirConditioning'] === '1') {
  ?>
         <li class="works-wrapper col-3 col-sm-3 col-md-3 col-lg-3">
            <a class="works-img"href="<?php the_permalink() ?>" >
              <span class="works-gradient"></span>
              <?php the_post_thumbnail(); ?>
             </a><!-- .works-img -->
            <a class="works-title" href="<?php the_permalink() ?>" ><?php the_title(); ?></a>
         </li><!-- .worsk-wrapper -->

  <?php
   }
      endwhile;

      echo '</ul>';
  }
  elseif(in_array('page-id-241', $classes)) {
    echo '<p>do something</p>';
  }
 ?>

正在显示该帖子,但出现错误“非法字符串偏移'isAirConditioning'”

2 个答案:

答案 0 :(得分:0)

查看官方文档。您将$ single设置为true并检索一个值而不是一个数组。所以我猜是因为您尝试使用字符串作为数组而出现错误。

答案 1 :(得分:0)

我设法通过检查$ meta是否为空来解决问题

if(!empty($meta)) :
   if ($meta['isAirConditioning'] === '1') {
   ?>
     <li class="works-wrapper col-3 col-sm-3 col-md-3 col-lg-3">
       <a class="works-img"href="<?php the_permalink() ?>" >
         <span class="works-gradient"></span>
         <?php the_post_thumbnail(); ?>
       </a><!-- .works-img -->
       <a class="works-title" href="<?php the_permalink() ?>" ><?php the_title(); ?></a>
     </li><!-- .worsk-wrapper -->
   <?php
  }
  endif;