Last active
October 3, 2015 08:18
-
-
Save wrburgess/2424064 to your computer and use it in GitHub Desktop.
Insert Blocks into Templates with Drupal 7 #php #drupal #block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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