我有一个自定义字段,我想将其内容输出为 ul 列表。
自定义字段包含用空格分隔的单词。
我正在尝试在这里使用此代码,但它不起作用。
<?php
$list_items = get_post_meta($post->ID, 'idid');
if($list_items){
$list_items = explode(" ", $list_items) {
echo '<ul>';
foreach($list_items as $list_item)
echo '<li>' . $list_item . '</li>';
echo '</ul>';
}
}
?>