WPautop在post meta中

时间:2014-01-15 09:35:36

标签: wordpress meta

我想在自定义类型的post meta中允许段落。我认为是WPautop,但在这段代码中如何使用它?非常感谢

<?php $metacontenido = get_post_meta($postid, 'ofertacontenido', true);
    if($metacontenido != $empty) { echo "".$metacontenido.""; }?>

1 个答案:

答案 0 :(得分:0)

wpautop()功能会自动将行结尾转换为<p>标记。您可以阅读更多相关信息here

<?php $metacontenido = get_post_meta($postid, 'ofertacontenido', true);
      if($metacontenido != $empty) { wpautop($metacontenido); } ?>