Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save suresh-kumara-gist/90eb4b5c005cc97043d5b32c95ba677f to your computer and use it in GitHub Desktop.
Save suresh-kumara-gist/90eb4b5c005cc97043d5b32c95ba677f to your computer and use it in GitHub Desktop.
drupal 8 get default theme logo full path.
$config = \Drupal::config('system.theme');
$theme_settings = \Drupal::config($config->get('default') . '.settings')->get();
$variables['logo_path'] = file_create_url($theme_settings['logo']['path']);
dpm( $variables['logo_path']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment