1

我想要的很简单。我已经注册了一条路径

function spotlight_menu() {
    $items = array();

    $items['congres'] = array(
        'title' => 'Congres',
        'title arguments' => array(2),
        'page callback' => 'taxonomy_term_page',
        'access callback' => TRUE,
        'type' => MENU_NORMAL_ITEM,
    );

    return $items;
}

触发此菜单项时,我想重定向(不更改 url)到分类页面,该页面的术语是在调用此函数时运行的函数中选择的。

我该怎么做(特别是不更改网址)?

4

1 回答 1

1

您不能taxonomy_term_page直接调用,page callback因为您需要提供加载函数来加载术语,这对于您所拥有的设置来说太难了。

相反,将您自己的页面回调定义为中介并直接返回输出 taxonomy_term_page

function spotlight_menu() {
  $items = array();

  $items['congres'] = array(
    'title' => 'Congres',
    'page callback' => 'spotlight_taxonomy_term_page',
    'access callback' => TRUE,
    'type' => MENU_NORMAL_ITEM,
  );

  return $items;
}

function spotlight_taxonomy_term_page() {
  // Get your term ID in whatever way you need
  $term_id = my_function_to_get_term_id();

  // Load the term
  $term = taxonomy_term_load($term_id);

  // Make sure taxonomy_term_page() is available
  module_load_include('inc', 'taxonomy', 'taxonomy.pages');

  // Return the page output normally provided at taxonomy/term/ID
  return taxonomy_term_page($term);
}
于 2011-12-01T10:27:03.460 回答