Support

Account

Home Forums General Issues Warning: Trying to access array offset on value of type null in

Helping

Warning: Trying to access array offset on value of type null in

  • I want to display the “user profile image” on the “front page” but I’m getting an error:

    <?php
    
    $author_id = get_the_author_meta('ID');
    $image= get_field('image', 'user_'. $author_id );
    
    ?>
    <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
  • The field you are tying to get is not set for the field user you are trying to show

    OR

    you are trying to get the author value outside of “the Loop”

    
    <?php
    
    $author_id = get_the_author_meta('ID');
    $image= get_field('image', 'user_'. $author_id );
    if (!empty($image)) {
      ?>
        <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
      <?php 
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.