Created
April 2, 2018 08:08
-
-
Save alegut/54f4892743f8ba59c218da11af4b0173 to your computer and use it in GitHub Desktop.
Every add and even element in one loop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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