@@ -5,7 +5,7 @@ |
||
5 | 5 | */ |
6 | 6 | namespace Flynt\HideProtectedPosts; |
7 | 7 | |
8 | -add_action('pre_get_posts', function ($query) { |
|
8 | +add_action('pre_get_posts', function($query) { |
|
9 | 9 | if (!$query->is_singular() && !is_admin()) { |
10 | 10 | $query->set('has_password', false); |
11 | 11 | } |
@@ -4,7 +4,7 @@ |
||
4 | 4 | */ |
5 | 5 | namespace Flynt\RemoveEditor; |
6 | 6 | |
7 | -add_action('init', function () { |
|
7 | +add_action('init', function() { |
|
8 | 8 | remove_post_type_support('page', 'editor'); |
9 | 9 | remove_post_type_support('post', 'editor'); |
10 | 10 | }); |
@@ -17,7 +17,7 @@ |
||
17 | 17 | * |
18 | 18 | * Don't return the default description in the RSS feed if it hasn't been changed |
19 | 19 | */ |
20 | -add_filter('get_bloginfo_rss', function ($bloginfo) { |
|
20 | +add_filter('get_bloginfo_rss', function($bloginfo) { |
|
21 | 21 | $defaultTagline = 'Just another WordPress site'; |
22 | 22 | return ($bloginfo === $defaultTagline) ? '' : $bloginfo; |
23 | 23 | }); |
@@ -14,7 +14,7 @@ |
||
14 | 14 | function addOptionsToComponent($data, $componentName) |
15 | 15 | { |
16 | 16 | // get fields for this component |
17 | - $options = array_reduce(array_keys(Options::OPTION_TYPES), function ($carry, $optionType) use ($componentName) { |
|
17 | + $options = array_reduce(array_keys(Options::OPTION_TYPES), function($carry, $optionType) use ($componentName) { |
|
18 | 18 | return array_merge($carry, Options::get($optionType, 'Component', $componentName)); |
19 | 19 | }, []); |
20 | 20 | // don't overwrite existing data |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -add_action('after_setup_theme', function () { |
|
3 | +add_action('after_setup_theme', function() { |
|
4 | 4 | add_theme_support('title-tag'); |
5 | 5 | add_theme_support('post-thumbnails'); |
6 | 6 | }); |
@@ -28,11 +28,11 @@ discard block |
||
28 | 28 | * Remove self-closing tag |
29 | 29 | * |
30 | 30 | */ |
31 | -add_action('init', function () { |
|
31 | +add_action('init', function() { |
|
32 | 32 | // Originally from http://wpengineer.com/1438/wordpress-header/ |
33 | 33 | remove_action('wp_head', 'feed_links_extra', 3); |
34 | 34 | add_action('wp_head', 'ob_start', 1, 0); |
35 | - add_action('wp_head', function () { |
|
35 | + add_action('wp_head', function() { |
|
36 | 36 | $pattern = '/.*' . preg_quote(esc_url(get_feed_link('comments_' . get_default_feed())), '/') . '.*[\r\n]+/'; |
37 | 37 | echo preg_replace($pattern, '', ob_get_clean()); |
38 | 38 | }, 3, 0); |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | * |
61 | 61 | * Clean up output of stylesheet <link> tags |
62 | 62 | */ |
63 | -add_filter('style_loader_tag', function ($input) { |
|
63 | +add_filter('style_loader_tag', function($input) { |
|
64 | 64 | preg_match_all( |
65 | 65 | "!<link rel='stylesheet'\s?(id='[^']+')?\s+href='(.*)' type='text/css' media='(.*)' />!", |
66 | 66 | $input, |
@@ -4,7 +4,7 @@ |
||
4 | 4 | */ |
5 | 5 | namespace Flynt\MimeTypes; |
6 | 6 | |
7 | -add_filter('upload_mimes', function ($mimes) { |
|
7 | +add_filter('upload_mimes', function($mimes) { |
|
8 | 8 | $mimes['svg'] = 'image/svg+xml'; |
9 | 9 | return $mimes; |
10 | 10 | }); |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | use Flynt\Utils\Asset; |
4 | 4 | |
5 | -add_action('wp_enqueue_scripts', function () { |
|
5 | +add_action('wp_enqueue_scripts', function() { |
|
6 | 6 | Asset::enqueue([ |
7 | 7 | 'name' => 'Flynt/assets', |
8 | 8 | 'path' => 'assets/main.js', |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | ]); |
19 | 19 | }); |
20 | 20 | |
21 | -add_action('admin_enqueue_scripts', function () { |
|
21 | +add_action('admin_enqueue_scripts', function() { |
|
22 | 22 | Asset::enqueue([ |
23 | 23 | 'name' => 'Flynt/assets/admin', |
24 | 24 | 'path' => 'assets/admin.js', |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | if (count($files) === 0) { |
58 | 58 | $dir = get_template_directory() . '/' . $dir; |
59 | 59 | |
60 | - self::iterateDir($dir, function ($file) { |
|
60 | + self::iterateDir($dir, function($file) { |
|
61 | 61 | if ($file->isDir()) { |
62 | 62 | $dirPath = trim(str_replace(get_template_directory(), '', $file->getPathname()), '/'); |
63 | 63 | self::loadPhpFiles($dirPath); |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | } |
68 | 68 | }); |
69 | 69 | } else { |
70 | - array_walk($files, function ($file) use ($dir) { |
|
70 | + array_walk($files, function($file) use ($dir) { |
|
71 | 71 | $filePath = $dir . '/' . ltrim($file, '/'); |
72 | 72 | |
73 | 73 | if (!locate_template($filePath, true, true)) { |