Answers for "drupal 8 get node from path alias"

0

drupal 8 get node from path alias

// Get node from path alias.
$path = \Drupal::service('path.alias_manager')->getPathByAlias('/this-is-the-alias');

if(preg_match('/node\/(\d+)/', $path, $matches)) {
  $node = \Drupal\node\Entity\Node::load($matches[1]);
}

// Path alias manager service has been change to 'path_alias.manager' on later version.
$path = \Drupal::service('path_alias.manager')->getPathByAlias('/this-is-the-alias');
Posted by: Guest on September-20-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language