Hey everyone, I'm currently using the code below to create some list items within an ordered list.
$output = '<div id="menu_options">';
$output .= '<ol class="tabs">';
foreach($menu_items as $menu){
$output .= '<li><a href="'.$menu->ID.'" class="menu_page_id">'.$menu->title.'</a></li>';
}
$output .= '</ol>';
$output .= '</div>';
$output .= '<div id="menu_content">This is content</div>';
Everything seems to be working fine, but I'd like to remove the automatic numbering (1., 2., etc). Is there a way to achieve this and have nothing displayed in place of those numbers?