If you are trying to place a “name” attribute in menu hyperlink then this can be accomplished by declaring a function in your template.php file as below- <?php function phptemplate_menu_item_link($item, $link_item) { // Convert anchors in path to proper fragment $path = explode('#', $link_item['path'], 2); $fragment = !empty($path[1]) ? $path[1] : NULL; $path = $path[0]; [...]
↧