Skip to content

Instantly share code, notes, and snippets.

View r0bsc0tt's full-sized avatar

Rob Scott r0bsc0tt

View GitHub Profile
@r0bsc0tt
r0bsc0tt / .htaccess
Created June 25, 2018 15:08 — forked from jdevalk/.htaccess
These three files together form an affiliate link redirect script.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^index\.php$ - [L]
RewriteRule (.*) ./index.php?id=$1 [L]
</IfModule>
@r0bsc0tt
r0bsc0tt / add_drop_caps.php
Last active November 2, 2016 16:39 — forked from strangerstudios/add_drop_caps.php
Filter to add drop caps to first letter of blog posts in WordPress. Add to your active theme's functions.php.
/*
Drop cap first letter of each post.
*/
add_filter('the_content', 'add_drop_caps', 30);
function add_drop_caps($content) {
global $post;
//only on these included post types
$included_post_types = array("eazy-photo", "post" );