Monday, 6 June 2016
Print nid in drupal 8 twig file or template file
print nid in drupal 8 twig file or template file
add this code in _preprocess_page in .theme file at following location
ryder/themes/theamname/theamname.theme
find for _preprocess_page and add this
$node = \Drupal::routeMatch()->getParameter('node');
if ($node) {
$variables['nodeid'] = $node->id();
}
now in twig print as {{ nodeid }}
add this code in _preprocess_page in .theme file at following location
ryder/themes/theamname/theamname.theme
find for _preprocess_page and add this
$node = \Drupal::routeMatch()->getParameter('node');
if ($node) {
$variables['nodeid'] = $node->id();
}
now in twig print as {{ nodeid }}


