Skip to content

Instantly share code, notes, and snippets.

View IacopoC's full-sized avatar
🎯
Crunch mode

Iacopo C IacopoC

🎯
Crunch mode
View GitHub Profile
@IacopoC
IacopoC / ga-tracking-wp.php
Last active April 18, 2017 10:02
Google analytics tracking code snippet in functions.php WordPress
<?php add_action('wp_head', 'add_google_analytics');
function add_google_analytics() {
// Insert your GA code here
}
@IacopoC
IacopoC / trash-wp.php
Last active January 19, 2017 14:16
Trash time constant in WordPress
<?php define('EMPTY_TRASH_DAYS', 30); ?>