显示带有HTML标记和所有内容的帖子内容

时间:2017-11-27 作者:Marcio Vieyra

下面的代码允许我很好地显示文章标题和内容,但内容并不像我在post EDITOR上看到的那样显示。

以下是呈现PHP的网页:http://queridas.com.ar/sandbox/reflexion/entrevistas/

以下是PHP代码:

<?php

$post_id = 2292;  // Define the ID of the page
$queriedPost = get_post($post_id);  // Load contents of the page
$field_contents = get_post_meta($queriedPost->ID, $field_slug, true);    // Load the contents of the custom field
$post_object = get_post( $post_id );

echo \'<h3>\' . $queriedPost->post_title . \'</h3>\';
echo $post_object->post_content;

?>
下面是帖子本身:http://queridas.com.ar/sandbox/2017/11/27/la-maternidad-es-una-carcel/

那么,我如何才能将这段PHP代码与最终用户使用的风格结合起来使用呢?例如,我不能让他们编辑代码并包含标记。好我可以,但是。。。。。。

非常感谢!

1 个回复
最合适的回答,由SO网友:Marcelo Henriques Cortez 整理而成

首先,确保您在编辑器中的文本没有任何复制源代码。使用HTML选项卡进行检查。在您提供的链接中,文本包含段落,其中包含span,该span中包含更多span。有点奇怪。

除此之外,您还必须使用CSS为文本的每个细节设置样式,比如“预见”用户将使用什么。为段落、标题、跨度、粗体、斜体创建样式,无论您需要什么。

结束