公共 | - index.php(外部) | - post-viewer.php(外部) | - / WP(wp安装)
我试图从外部页面调用wordpress安装的帖子。 我设法在索引页面上显示帖子标题,摘录,缩略图和发布内容(通过以下教程:http://codex.wordpress.org/Integrating_WordPress_with_Your_Website)。
当我点击index.php上的帖子标题时,我的浏览器被重定向到Wordpress网站(我希望公开隐藏)。
如何使帖子内容显示在post-viewer.php上?
由于
答案 0 :(得分:0)
加载WordPress核心功能并通过get_post选项加载
<?php
require_once("wp-load.php");
$post = get_post( 12 ); // your post id
echo $post->post_content;
?>