How to insert a block into a node or template in Drupal 7?

后端 未结 15 1221
闹比i
闹比i 2021-01-30 01:46

In Drupal 6, it was easy to insert a block into a template with the following code:

$block = module_invoke(\'views\', \'block\', \'view\', \'block_name\');
print         


        
15条回答
  •  难免孤独
    2021-01-30 02:20

    Have a look how Drupal does it in _block_render_blocks. The result of that function gets passed to drupal_render.

提交回复
热议问题