Adicionando uma View no conteúdo

$name Nome da view para ser adicionada.

$display_id O display id que você quer usar. Coisas como 'page' ou 'block' funcionam aqui.

<?php
function views_embed_view($name, $display_id = 'default') {
  $args = func_get_args();
  array_shift($args); // remove $name
  if (count($args)) {
    array_shift($args); // remove $display_id
  }

  $view = views_get_view($name);
  if (!$view) {
    return;
  }

  return $view->preview($display_id, $args);
}
?>

Então fica assim: <?php print views_embed_view(nome); ?>
Fonte: http://api.freestylesystems.co.uk/api/function/views_embed_view