@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | /** |
10 | 10 | * Current year |
11 | 11 | */ |
12 | -add_shortcode('year', function () { |
|
12 | +add_shortcode('year', function() { |
|
13 | 13 | $year = date_i18n('Y'); |
14 | 14 | return $year; |
15 | 15 | }); |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | /** |
18 | 18 | * Site Title |
19 | 19 | */ |
20 | -add_shortcode('sitetitle', function () { |
|
20 | +add_shortcode('sitetitle', function() { |
|
21 | 21 | $blogname = get_bloginfo('name'); |
22 | 22 | return $blogname; |
23 | 23 | }); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | /** |
26 | 26 | * Tagline |
27 | 27 | */ |
28 | -add_shortcode('tagline', function () { |
|
28 | +add_shortcode('tagline', function() { |
|
29 | 29 | $tagline = get_bloginfo('description'); |
30 | 30 | return $tagline; |
31 | 31 | }); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | /** |
34 | 34 | * Privacy Policy Link |
35 | 35 | */ |
36 | -add_shortcode('privacyPolicyPageLink', function ($atts) { |
|
36 | +add_shortcode('privacyPolicyPageLink', function($atts) { |
|
37 | 37 | $data = shortcode_atts([ |
38 | 38 | 'label' => __('Privacy Policy', 'flynt'), |
39 | 39 | 'target' => '_blank' |