日期:2014-01-21 阅读:2728
dmandwp系统 - wordpress系统和DM系统区块建站>>
1、drupal:不同的内容类型使用不同的模版 http://www.trackself.com/archives/2335.html
function template_name_preprocess_page(&$vars) {
// Add per content type pages
if (isset($vars['node']->type)) {
// Add template naming suggestion. It should alway use hyphens.
// If node type is "custom_news", it will pickup "page-custom-news.tpl.php".
$vars['theme_hook_suggestions'][]='page_'.$vars['node']->type;
}
}
-----------------
2、drupal anywhere : delta & context , 专业级模块,让region不再固定 http://www.trackself.com/archives/2353.html
3、最简单的就是在block里指定。 https://drupal.org/documentation/modules/block
4、首页的话,就用page--front.tpl.php
----------------
display-suite : https://drupal.org/project/ds https://drupal.org/node/644706
http://zugec.com/2011/09/display-suite-part-2-view-modes-and-fields
文字文档: https://drupal.org/node/644662