在外部网页上显示WordPress帖子

时间:2014-02-18 12:54:41

标签: php wordpress

我在外部网页上运行WordPress功能以获取帖子和页面。功能正常。

我正在使用

the_content();

显示帖子的正文但似乎没有保持正确的格式。 HTML显示正常,但换行符等不是。

以下是我正在使用的完整PHP代码:

$page = get_page_by_id($_GET["p"], OBJECT, 'post');
    query_posts('p='.$page->ID.'');
    if($page->ID) {
        while (have_posts()) {
            the_post(); ?>
            <h2><?php the_title(); ?></h2><br>
            Posted on <?php the_date(); ?><br><br>
            <?php
            the_content();
        }
    }

我网站的屏幕截图: http://postimg.org/image/nc2xw6af3/

Wordpress模板的屏幕截图: http://postimg.org/image/r01znya1p/

1 个答案:

答案 0 :(得分:0)

看起来缺少必需的CSS信息。您需要在WordPress模板中包含<h2><p>标记的CSS。