PHP Drupal 6:动态更改菜单链接标题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Drupal 6:动态更改菜单链接标题相关的知识,希望对你有一定的参考价值。

<?php
/**
 * Implementation of phptemplate_preprocess_page()
 * Variables available in page.tpl.php can be overriden from this function.
 * They are referenced in the array $vars
 * 
 * This example shows changing a title of a link in the primary nav menu
 * I suggest print_r() the $vars array and explore its contents
 * (this snippet belongs in the template.php file and remember to clear your cache
 */
function phptemplate_preprocess_page(&$vars) {
  $vars['primary_links']['foobar']['title'] = 'My Member Page';
}
?>

以上是关于PHP Drupal 6:动态更改菜单链接标题的主要内容,如果未能解决你的问题,请参考以下文章

Drupal 8 根据当前路线更改菜单链接

PHP Drupal菜单不是链接的项目

Drupal 创建具有 Active Trail 属性的动态菜单

PHP Drupal(6和7):以编程方式更改活动主题

Drupal 6 视图 2:PHP 片段

PHP 在Drupal 6中添加span到主链接