2011-01-21 54 views
0

我不知道是否有人会知道如何在Drupal 7的分类内容的网页,以显示他们的孩子的内容,以及。Drupal 7的分类显示父

例如给予类似的词汇:

-Animal 
--Dog 
--Cat 

的动物分类页面应该显示的狗和猫的内容,以及。

谢谢!


如果它的任何帮助,这里是我使用的视图的出口副本:

$view = new view; 
$view->name = 'taxonomy_term'; 
$view->description = 'A view to emulate Drupal core\'s handling of taxonomy/term; it also emulates Views 1\'s handling by having two possible feeds.'; 
$view->tag = 'default'; 
$view->base_table = 'node'; 
$view->human_name = ''; 
$view->core = 0; 
$view->api_version = '3.0-alpha1'; 
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */ 

/* Display: Defaults */ 
$handler = $view->new_display('default', 'Defaults', 'default'); 
$handler->display->display_options['access']['type'] = 'none'; 
$handler->display->display_options['cache']['type'] = 'none'; 
$handler->display->display_options['query']['type'] = 'views_query'; 
$handler->display->display_options['exposed_form']['type'] = 'basic'; 
$handler->display->display_options['pager']['type'] = 'full'; 
$handler->display->display_options['style_plugin'] = 'default'; 
$handler->display->display_options['row_plugin'] = 'node'; 
/* Sort criterion: Node: Sticky */ 
$handler->display->display_options['sorts']['sticky']['id'] = 'sticky'; 
$handler->display->display_options['sorts']['sticky']['table'] = 'node'; 
$handler->display->display_options['sorts']['sticky']['field'] = 'sticky'; 
$handler->display->display_options['sorts']['sticky']['order'] = 'DESC'; 
/* Sort criterion: Node: Post date */ 
$handler->display->display_options['sorts']['created']['id'] = 'created'; 
$handler->display->display_options['sorts']['created']['table'] = 'node'; 
$handler->display->display_options['sorts']['created']['field'] = 'created'; 
$handler->display->display_options['sorts']['created']['order'] = 'DESC'; 
/* Argument: Taxonomy: Term ID (with depth) */ 
$handler->display->display_options['arguments']['term_node_tid_depth']['id'] = 'term_node_tid_depth'; 
$handler->display->display_options['arguments']['term_node_tid_depth']['table'] = 'node'; 
$handler->display->display_options['arguments']['term_node_tid_depth']['field'] = 'term_node_tid_depth'; 
$handler->display->display_options['arguments']['term_node_tid_depth']['default_action'] = 'not found'; 
$handler->display->display_options['arguments']['term_node_tid_depth']['style_plugin'] = 'default_summary'; 
$handler->display->display_options['arguments']['term_node_tid_depth']['title'] = '%1'; 
$handler->display->display_options['arguments']['term_node_tid_depth']['default_argument_type'] = 'fixed'; 
$handler->display->display_options['arguments']['term_node_tid_depth']['validate_type'] = 'taxonomy_term'; 
$handler->display->display_options['arguments']['term_node_tid_depth']['validate_options']['type'] = 'tids'; 
$handler->display->display_options['arguments']['term_node_tid_depth']['validate_options']['transform'] = 0; 
$handler->display->display_options['arguments']['term_node_tid_depth']['depth'] = '10'; 
$handler->display->display_options['arguments']['term_node_tid_depth']['break_phrase'] = 1; 
$handler->display->display_options['arguments']['term_node_tid_depth']['set_breadcrumb'] = 0; 
$handler->display->display_options['arguments']['term_node_tid_depth']['use_taxonomy_term_path'] = 0; 
/* Argument: Taxonomy: Term ID depth modifier */ 
$handler->display->display_options['arguments']['term_node_tid_depth_modifier']['id'] = 'term_node_tid_depth_modifier'; 
$handler->display->display_options['arguments']['term_node_tid_depth_modifier']['table'] = 'node'; 
$handler->display->display_options['arguments']['term_node_tid_depth_modifier']['field'] = 'term_node_tid_depth_modifier'; 
$handler->display->display_options['arguments']['term_node_tid_depth_modifier']['style_plugin'] = 'default_summary'; 
$handler->display->display_options['arguments']['term_node_tid_depth_modifier']['default_argument_type'] = 'fixed'; 
/* Filter: Node: Published or admin */ 
$handler->display->display_options['filters']['status_extra']['id'] = 'status_extra'; 
$handler->display->display_options['filters']['status_extra']['table'] = 'node'; 
$handler->display->display_options['filters']['status_extra']['field'] = 'status_extra'; 
$handler->display->display_options['filters']['status_extra']['group'] = 0; 
$handler->display->display_options['filters']['status_extra']['expose']['operator'] = FALSE; 

/* Display: Page */ 
$handler = $view->new_display('page', 'Page', 'page'); 
$handler->display->display_options['path'] = 'taxonomy/term/%'; 

/* Display: Core feed */ 
$handler = $view->new_display('feed', 'Core feed', 'feed'); 
$handler->display->display_options['pager']['type'] = 'full'; 
$handler->display->display_options['pager']['options']['items_per_page'] = 15; 
$handler->display->display_options['style_plugin'] = 'rss'; 
$handler->display->display_options['row_plugin'] = 'node_rss'; 
$handler->display->display_options['path'] = 'taxonomy/term/%/%/feed'; 
$handler->display->display_options['displays'] = array(
    'page' => 'page', 
    'default' => 0, 
); 

/* Display: Views 1 feed */ 
$handler = $view->new_display('feed', 'Views 1 feed', 'feed_1'); 
$handler->display->display_options['pager']['type'] = 'full'; 
$handler->display->display_options['pager']['options']['items_per_page'] = 15; 
$handler->display->display_options['style_plugin'] = 'rss'; 
$handler->display->display_options['row_plugin'] = 'node_rss'; 
$handler->display->display_options['path'] = 'taxonomy/term/%/feed'; 
$translatables['taxonomy_term'] = array(
    t('Defaults'), 
    t('more'), 
    t('Apply'), 
    t('Reset'), 
    t('Sort By'), 
    t('Asc'), 
    t('Desc'), 
    t('Items per page'), 
    t('- All -'), 
    t('Offset'), 
    t('All'), 
    t('%1'), 
    t('Page'), 
    t('Core feed'), 
    t('Views 1 feed'), 
); 
+0

如何其他选项设置?块我生成无显示... 我有一个场taxonomy_term设置和过滤器taxonomy_termid与深度。 是父母的下拉可能吗? 谢谢。 Grtz。 – 2011-01-28 14:43:43

回答

1

想通了。 “分类:长期ID(深度)”

使用视图“taxonomy_term”的看法,我的的深度属性设置参数为最大(10)

0

任何理由不使用http://drupal.org/project/taxonomy_menu

+0

感谢您的回复。我只是没有真正回答我的问题。 (据我所知)分类菜单不会改变标签查看内容的方式,它只是基于词汇表创建菜单。 – msrxthr 2011-01-21 15:22:37