如何使用html - wordpress将post_title与post_content连接起来

时间:2017-06-19 12:37:39

标签: php html mysql wordpress facebook

我正在使用get_post(post_id)获取post_titlepost_content。我想将它们连接起来,post_title将成为新字符串中的第一段。

例如

$post_title = 'Hi all, welcome here'
$post_content = 'lorem ipsum bla bla la
new paragraph bla bla bla
new paragrapg lorem ipsum'

我希望结果如下:

  

大家好,欢迎光临这里   lorem ipsum bla bla la
  新款bla bla bla
  新的paragrapg lorem ipsum

但我不知道如何在post_title之后传递新的段落字符。在db视图(mysql)中,没有标签只有空格或隐藏的字符。我在努力:

$new_string = $post_title.'/r/n'.$post_content
$new_string = '<p>'.$post_title.'</p>'.$post_content

但它不起作用。

在此操作之后,我想使用apply_filters('the_content', $new_content)来查看这个新字符串并使用facebook SDK将其发送到Facebook粉丝页。

1 个答案:

答案 0 :(得分:0)

您应该使用nl2br()函数在段落中包含换行符。它会将所有\ n转换为新行。

$new_string = nl2br($post_title.$post_content);