Jump to content

the foreach in the loop returns bool(false) though array is present


littleangel

Recommended Posts

in my code below the **data is extracted correctly for the first foreach but doesn't return anything for 2nd foreach though selected one present inside the 2nd foreach** i still get the error Warning: Invalid argument supplied for foreach() for line `foreach ($authorlist as $post)`... however the 2nd foreach returns data correctly as soon as i remove the first foreach loop. 

 

below is my code

 

  


  <?php
    
    $all= get_posts(array('post_type' => 'books', 'numberposts' => -1,));
    
    foreach ( $all as $post ) :  setup_postdata($post);
    
        if (!empty($post))
        {
         $booklink = array();
    
         $booklist = get_field('booklist'); 
                   foreach ($booklist as $post) : setup_postdata($post);
                        if (!empty($post))
                            {
                            $booklink[] = strip_tags(get_field('booklink',$post));                                       
                            }
                    endforeach;
                    wp_reset_postdata();
         echo $booklink[0];  
    
         $authorname = array();
    
         $authorlist = get_field('authorlist'); 
                   foreach ($authorlist as $post) : setup_postdata($post);
                        if (!empty($post))
                            {
                            $authorname[] = strip_tags(get_field('authorname',$post));                                       
                            }
                    endforeach;
                    wp_reset_postdata();
    echo $authorname[0]; 
    
        }
    endforeach;
    ?>

 

i did var_dump($authorlist) ...it returns bool(false) as long as foreach ($booklist as $post)  loop is present. The moment i remove that loop then the dump shows the data of the authorlist correctly...how to get both the loops working together.

 

Edited by littleangel
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.