This function embeds views view in Drupal. This function doesn't display the title of the view.
Source code viewer
/** * Embed a view. * * Note that this function does NOT display the title of the view. * * @param $name * The name of the view to embed. * @param $display_id * The display id to embed. If unsure, use 'default', as it will always be * valid. But things like 'page' or 'block' should work here. * @param ... * Any additional parameters will be passed as arguments. */ views_embed_view($name, $display_id = 'default');Programming Language: PHP