@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | - use Timber\Timber; |
|
4 | - use Timber\Post; |
|
3 | + use Timber\Timber; |
|
4 | + use Timber\Post; |
|
5 | 5 | |
6 | 6 | add_filter('wp_insert_post_data', function ($data, $postArr) { |
7 | 7 | if ($postArr['post_type'] === 'revision') { |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | use Timber\Timber; |
4 | 4 | use Timber\Post; |
5 | 5 | |
6 | -add_filter('wp_insert_post_data', function ($data, $postArr) { |
|
6 | +add_filter('wp_insert_post_data', function($data, $postArr) { |
|
7 | 7 | if ($postArr['post_type'] === 'revision') { |
8 | 8 | return $data; |
9 | 9 | } |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | return $data; |
14 | 14 | }, 99, 2); |
15 | 15 | |
16 | -add_shortcode('flyntTheContent', function ($attrs) { |
|
16 | +add_shortcode('flyntTheContent', function($attrs) { |
|
17 | 17 | $postId = $attrs['id']; |
18 | 18 | $context = Timber::get_context(); |
19 | 19 | $context['post'] = $post = new Post($postId); |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Flynt\Utils\TwigReadingTimeExtension; |
6 | 6 | |
7 | -add_filter('get_twig', function ($twig) { |
|
7 | +add_filter('get_twig', function($twig) { |
|
8 | 8 | $twig->addExtension(new TwigReadingTimeExtension()); |
9 | 9 | return $twig; |
10 | 10 | }); |
@@ -8,7 +8,7 @@ |
||
8 | 8 | |
9 | 9 | const POST_TYPE = 'post'; |
10 | 10 | |
11 | -add_filter('Flynt/addComponentData?name=GridPostsLatest', function ($data) { |
|
11 | +add_filter('Flynt/addComponentData?name=GridPostsLatest', function($data) { |
|
12 | 12 | $postType = POST_TYPE; |
13 | 13 | |
14 | 14 | $data['items'] = Timber::get_posts([ |