我正在尝试使用其 ID 检索 wordpress 帖子的内容:
$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
这是什么意思?
谢谢你们的帮助。