Skip to content

Instantly share code, notes, and snippets.

@timoleinio
timoleinio / delete.sql
Created November 7, 2013 17:13
Delete spam comments from WordPress
DELETE FROM [etutunniste]_comments WHERE comment_approved = 'spam';
@timoleinio
timoleinio / gist:7512361
Created November 17, 2013 11:48
Google Analytics Top Content Widget shortcode example
[google_top_content pageviews=5 number=10 showhome=no time=2628000 timeval=2]
@timoleinio
timoleinio / gist:7855446
Last active December 30, 2015 16:29
Last Updated Shortcode example
[lastupdate format="d.m.Y H:i:s" before="Viimeksi muokattu: "]
@timoleinio
timoleinio / template.php
Last active December 30, 2015 16:29
Last Updated Shortcode to template file
<?php
do_shortcode( [lastupdate format="d.m.Y H:i:s" before="Viimeksi muokattu: "] );
?>
@timoleinio
timoleinio / gist:7855504
Created December 8, 2013 10:07
Last Updated Shortcode
[lastupdate]
@timoleinio
timoleinio / style.css
Created December 8, 2013 11:09
Font Awesome CSS example
i{
color: blue
}
@timoleinio
timoleinio / gist:7856203
Created December 8, 2013 11:30
Font Awesome Shortcode example
[icon name="icon-youtube-sign" size="4x" space="false" title="Youtube"]
@timoleinio
timoleinio / index.php
Created December 19, 2013 16:48
Short WordPress plugin example
<?php
/*
Plugin Name: WP-Opas lisäosa
Plugin URI: http://wpopas.fi
Description: Lisäosa esimerkki
Version: 1.0
Author: Timo Leiniö
Author URI: http://wpopas.fi
License:
License URI:
@timoleinio
timoleinio / style.css
Created January 5, 2014 13:38
WordPress child theme style example
/*
Theme Name: Twenty Fourteen lapsiteema
Template: twentyfourteen
*/
@import url("../twentyfourteen/style.css");
@timoleinio
timoleinio / style.css
Last active January 2, 2016 07:09
WordPress child theme example css
/*
Theme Name: Twenty Fourteen lapsiteema
Template: twentyfourteen
*/
@import url("../twentyfourteen/style.css");
.entry-title{
font-size: 54px;
}