-1

我使用以下代码从自定义字段“黑色、灰色、白色”中排列文本:

<?php global $wp_query; $postid = $wp_query->post->ID; echo get_post_meta($postid, 'colors', true); ?>

我想向我展示这样的:

black</br>
grey</br>
white

PHP可以吗?非常感谢

4

3 回答 3

1

使用 str_replace():

echo str_replace(",", "<br />", get_post_meta($postid, 'colors', true));
于 2013-09-29T01:39:02.120 回答
0

如果要<br>在“,”之后添加,可以这样做:

$text = preg_replace("/,/", "<br>", get_post_meta($postid, 'colors', true));
于 2013-09-29T01:35:09.567 回答
0
str_replace(", "    ,    ", <br  />"   ,  $string) ;

格式为 ("from", "to" , "what")

于 2013-09-29T01:39:26.700 回答