Metadata on the WP_Post object
There is no ‘magic’ in it, but there are two magic methods of WP_Post class, __isset(), and __get(). Your extra_data is not a property of WP_Post class, so first var_dump does not include it. A reference to non existing property of WP_Post employs those magic methods, mentioned above, to retrieve post’s metadata. First, $post->__isset(‘extra_data’) will … Read more