Skip to content

Instantly share code, notes, and snippets.

View ErikBernskiold's full-sized avatar

Erik Bernskiold ErikBernskiold

View GitHub Profile
@ErikBernskiold
ErikBernskiold / robots.txt (no index everything)
Created February 19, 2019 19:54
No-indexes everything.
User-Agent: *
Disallow: /
@ErikBernskiold
ErikBernskiold / GTM4WP Tracking Code
Created March 18, 2019 14:10
The code should be placed directly after the opening <body> tag.
<?php if ( function_exists( 'gtm4wp_the_gtm_tag' ) ) { gtm4wp_the_gtm_tag(); } ?>
@ErikBernskiold
ErikBernskiold / htaccess-production-fallback
Created March 27, 2019 18:29
Load wp-content from production if a file doesn't exist locally.
RewriteCond %{REQUEST_URI} ^/wp-content/uploads/[^\/]*/.*$
RewriteRule ^(.*)$ https://PRODUCTIONDOMAIN/$1 [QSA,L]
@ErikBernskiold
ErikBernskiold / HeroiconsUpgrade.php
Created October 18, 2023 14:33
Heroicons V2 Upgrade Command
<?php
namespace App\Console\Commands;
use Closure;
use Illuminate\Console\Command;
use Illuminate\Filesystem\FilesystemAdapter;
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Storage;