Skip to content

Instantly share code, notes, and snippets.

View thezacharytaylor's full-sized avatar
🧙
Focusing

Zachary Taylor thezacharytaylor

🧙
Focusing
View GitHub Profile
@thezacharytaylor
thezacharytaylor / gist:f3496e333e6ef60e58bae4ce6a437805
Created November 16, 2023 18:36 — forked from adamrosloniec/gist:e34fcc7a0743769c75db1b072d677946
WordPress - show/debug all rewrites - rewrite dump
function debug_404_rewrite_dump( &$wp ) {
global $wp_rewrite;
echo '<h2>rewrite rules</h2>';
echo var_export( $wp_rewrite->wp_rewrite_rules(), true );
echo '<h2>permalink structure</h2>';
echo var_export( $wp_rewrite->permalink_structure, true );

Improved .sr-only

Theorically bulletproof CSS class for visually hide anything and keep it accessible to ATs.

A Pen by ffoodd on CodePen.

License.

@thezacharytaylor
thezacharytaylor / gist:c3b4cb88d3a7b2b1143b05f5cc8180f2
Created February 7, 2022 15:08 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>