这更多的是关于php的字符串和数组操作,而不是WordPress相关的问题。
正确的方法是使用转发器字段,而不是单一的文本输入。高级自定义字段似乎就是您正在使用的插件,它有一个很好的repeater插件。这将允许用户添加任意多的字段、更改顺序、删除字段等等。无需担心正确写入分隔符。
如果不选择使用repeater字段,则可以使用php函数explode
将字符串转换为数组,然后使用简单循环进行处理。
//The custom field
$custom_field = \'Tag 1, Tag 2, Tag 3\';
//Remove the extra space after the comma
$custom_field = str_replace( \', \', \',\', $custom_field );
//Convert the string to array using the comma as the delimiter
$items = explode( \',\' , $custom_field );
//Print the unordered list
echo \'<ul>\';
foreach ( $items as $item ) :
echo "<li>$item</li>";
endforeach;
echo \'</ul>\';