Embedding Block content in a node $content

To display a block-content in a page node, the following code is used


<?php
$block = module_invoke('block', 'block', 'view', 26);
print $block['content'];
?>

for example, to display a webform block:

<?php
$block = module_invoke('webformblock', 'block', 'view', 19);
print $block['content'];
?>

Retrieve the id.num from the "edit block"
admin/build/block and click or hover over the configure link

The url will be in the form:
admin/build/block/configure/webformblock/19

from api.drupal.com:

$module The name of the module (without the .module extension).

$hook The name of the hook to invoke.

... Arguments to pass to the hook implementation.