Trying to get property ‘post_title’ of non-object
-
Hi,
Would it be possible to change the file /popup-anything-on-click/includes/shortcode/popupaoc-popup-shortcode.php on lines 94 and 95 to avoid PHP Notices in some specific cases?
Current code :
$image_title = $attachment->post_title;
$image_caption = $attachment->post_excerpt;Correction:
$image_title = !empty($attachment->post_title) ? $attachment->post_title : ”;
$image_caption = !empty($attachment->post_excerpt) ? $attachment->post_excerpt : ”;Thank you
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Trying to get property ‘post_title’ of non-object’ is closed to new replies.