IDを使用してワードプレスの投稿のコンテンツを取得しようとしています:
$loadpost = url_to_postid($actual_link);
$newpost = get_post($loadpost);
echo '<article id="post-'.$newpost["ID"].'"><h1>'.$newpost["post_title"].'</h1>'.$newpost["post_content"];
$ loadpostは有効なIDを返しますが、どういうわけかこの式は機能しません。IEは以下を返します:
Fatal error: Cannot use object of type stdClass as array in /hermes/waloraweb046/b428/moo.snippetspacecom/splittemplate/wp-content/themes/split/index.php on line 24
これは何を意味するのでしょうか?
助けてくれてありがとう。