Closed. This question is off-topic. It is not currently accepting answers.admin管理员组文章数量:1201415
Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 2 years ago.
Improve this questionNot having access to the functions file, I can't add the function to add the featured image to the API so I need to use wp-json/wp/v2/posts?_embed
.
With javascript I believe it is ._embedded['wp:featuredmedia']['0'].source_url
so I tried with php after using wp_remote_get
, $post->_embedded['wp:featuredmedia'][0]->source_url
but the error I am getting is :
Closed. This question is off-topic. It is not currently accepting answers.Cannot use object of type stdClass as array
Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 2 years ago.
Improve this questionNot having access to the functions file, I can't add the function to add the featured image to the API so I need to use wp-json/wp/v2/posts?_embed
.
With javascript I believe it is ._embedded['wp:featuredmedia']['0'].source_url
so I tried with php after using wp_remote_get
, $post->_embedded['wp:featuredmedia'][0]->source_url
but the error I am getting is :
Share Improve this question asked Jun 2, 2022 at 13:03 user8463989user8463989 5931 gold badge8 silver badges24 bronze badges 4Cannot use object of type stdClass as array
$post->_embedded
is an object which is an instance of the generic "empty" class in PHP, namelystdClass
. So you should've instead used$post->_embedded->{'wp:featuredmedia'}
. – Sally CJ Commented Jun 2, 2022 at 13:52$post = json_decode( 'JSON string' )
?本文标签: postsGetting featured image with PHP and not javascript from wordpress api embed