Skip to content

Instantly share code, notes, and snippets.

@wrburgess
Last active October 3, 2015 08:18
Show Gist options
  • Save wrburgess/2424064 to your computer and use it in GitHub Desktop.
Save wrburgess/2424064 to your computer and use it in GitHub Desktop.
Insert Blocks into Templates with Drupal 7 #php #drupal #block
<?php
$block = module_invoke('views', 'block_view', 'slider-block');
print render($block);
?>
<?php
$block = module_invoke('block','block_view','1');
print render($block['content']);
?>
<?php
$bottom_menu = menu_tree('menu-bottom-menu');
print drupal_render($bottom_menu);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment