单行显示的自定义字段

时间:2020-04-29 作者:Kishore Chandra

我有自定义字段要在帖子中显示。但所有自定义字段都显示在一个连续的行中,而我希望它们显示在单独的行中。我不是编码员。我试过了<br>, <li> 但还是没有运气。我也在stack exchange和web中搜索了类似的问题,但没有找到答案。请帮忙。

下面是我的单曲代码。php后-while ( have_posts() ) : the_post(); $key_name = get_post_custom_values ($key = \'country\'); echo \'Country : \', $key_name[0]; $key_name = get_post_custom_values ($key = \'status\'); echo \'Status : \', $key_name[0];

该职位的结果如下:

国家:沙特阿拉伯国家:已宣布

我希望它看起来像下面的一个:

国家:沙特阿拉伯

状态:已宣布

2 个回复
SO网友:Ivo

可能不是最好的解决方案,但为什么不尝试以下方法:

while ( have_posts() ) : the_post(); ?>
<div><?php $key_name = get_post_custom_values ($key = \'country\'); echo \'Country : \', $key_name[0]; ?> </div>
<div><?php $key_name = get_post_custom_values ($key = \'status\'); echo \'Status : \', $key_name[0]; ?> </div>

SO网友:Kishore Chandra

我在这里根据用户4379653提供的答案找到了一个解决方案https://stackoverflow.com/questions/27636676/php-line-break-not-working

我用过<br /> 来自第二个自定义字段的回显,因为第一个字段不需要。

$key_name = get_post_custom_values ($key = \'status\'); echo \'<br />Status : \', $key_name[0];

感谢Ivo的帮助。

相关推荐

如何让`wp-list-table`显示我在Custom-Post中的`Custom-Fields`

一切都好吗<我需要wp-list-table 也要显示custom-fields 在每个custom-post 我有,但我不知道如何做到这一点,在这幅图中,它显示了带有字段的表格:Title, Author and Publication Date: 我想要的是能够选择custom-fields 将出现,例如以下示例Title, Carta, Naipe, Author, and Date of Publication: