Skip to content

Instantly share code, notes, and snippets.

View chriswales95's full-sized avatar
😃

Christopher Wales chriswales95

😃
View GitHub Profile
@chriswales95
chriswales95 / Blocks.md
Created February 21, 2022 19:10 — forked from davidjguru/Blocks.md
Drupal 8 programmatic solutions

Render custom blocks

$bid = 'myblock';
$block = \Drupal\block_content\Entity\BlockContent::load($bid);
$render = \Drupal::entityTypeManager()->getViewBuilder('block_content')->view($block);

Render plugin blocks

$block_manager = \Drupal::service('plugin.manager.block');