drupal首页不显示默认内容列表方法
默认显示的代码为
<?php print render($page['content']); ?>
修改后为
<?php if ( !$is_front ): ?> <?php print render($page['content']); ?> <?php endif ?>
if you don't try,you will never know!
默认显示的代码为
<?php print render($page['content']); ?>
修改后为
<?php if ( !$is_front ): ?> <?php print render($page['content']); ?> <?php endif ?>