Set cache max age on related posts block
Based on https://www.drupal.org/node/2451555, added a `max-age` value to the related posts block. References #3
This commit is contained in:
parent
105405e7f9
commit
52fa58733d
|
@ -64,6 +64,9 @@ class RelatedPostsBlock extends BlockBase implements ContainerFactoryPluginInter
|
||||||
}
|
}
|
||||||
|
|
||||||
$build['content'] = [
|
$build['content'] = [
|
||||||
|
'#cache' => [
|
||||||
|
'max-age' => 604800,
|
||||||
|
],
|
||||||
'#theme' => 'item_list',
|
'#theme' => 'item_list',
|
||||||
'#items' => $relatedPosts
|
'#items' => $relatedPosts
|
||||||
->sortByDesc(fn(Post $post) => $post->getCreatedTime())
|
->sortByDesc(fn(Post $post) => $post->getCreatedTime())
|
||||||
|
|
Loading…
Reference in a new issue