我想在自定义类型的post meta中允许段落。我认为是WPautop,但在这段代码中如何使用它?非常感谢
<?php $metacontenido = get_post_meta($postid, 'ofertacontenido', true);
if($metacontenido != $empty) { echo "".$metacontenido.""; }?>
答案 0 :(得分:0)
wpautop()
功能会自动将行结尾转换为<p>
标记。您可以阅读更多相关信息here。
<?php $metacontenido = get_post_meta($postid, 'ofertacontenido', true);
if($metacontenido != $empty) { wpautop($metacontenido); } ?>