日期:2015-04-30 阅读:2681
dmandwp系统 - wordpress系统和DM系统区块建站>>
当你添加一个节点时,如果在publish option勾上Promoted to front page,那它就会出现在首页
如果要隐藏的话,又不能在区块里把Main page content设置为disable
那就不能勾上Promoted to front page。
或者编辑内容类型时,不要勾上Promoted to front page,那这个内容类型下的节点,默认就不会推荐到首页
或可用下面代码:
function bartik_preprocess_page(&$vars) {
if($node = menu_get_object()){
if ($node->type == 'article') {
$vars['page']['content']['system_main']['#access'] = FALSE;
}
}
}
-----
但我想找到block-system-main在哪里,暂时还没有找到。