Skip to content

Instantly share code, notes, and snippets.

@alegut
Created April 2, 2018 08:08
Show Gist options
  • Save alegut/54f4892743f8ba59c218da11af4b0173 to your computer and use it in GitHub Desktop.
Save alegut/54f4892743f8ba59c218da11af4b0173 to your computer and use it in GitHub Desktop.
Every add and even element in one loop
for ($i=1; $i+1< count($menu_param); $i+=2) {
$output .= '<li class="menu-item"><a title="'.$menu_param[$i].'" href="'.$menu_param[$i+1].'" target="_blank">'.$menu_param[$i].'</a></li>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment