This snippet shows you how to load a blocks content programmatically. You can use this way to display a block anywhere you want.
Source code viewer
// Replace module_name with module which generates the block. // Replace block_name with name of the block that you wish to show. $block = module_invoke('module_name', 'block_view', 'block_name'); echo $block['content']; // Real example how to use this method with webform blocks: $block = module_invoke('webform', 'block_view', 'client-block-3853'); print $block['content'];Programming Language: PHP