Skip to content

Instantly share code, notes, and snippets.

@kisabelle
kisabelle / pinterest-img-tag-wordpress-filter.php
Last active January 1, 2016 18:58
Filter the_content() to add Pinterest button code, by Jan Dembowski.
<?php
/*
Plugin Name: Pinterest Img Tag Button
Description: This will wrap images in the_content with Pinterest Button code
Author: Jan Dembowski
Author URI: http://blog.dembowski.net/
Version: 0.5
From http://wordpress.org/support/topic/add-code-before-each-image
@kisabelle
kisabelle / jquery-scroll-to-element-with-easing.js
Last active December 27, 2015 02:49
jQuery Scroll to Element with Easing / Smooth Scrolling, Reveal "Back to Top" link on scroll down
// method 1
$(function() {
$('nav a').bind('click',function(event){
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1500,'easeInOutExpo');
@kisabelle
kisabelle / grid.css
Created March 16, 2012 16:44
CSS Grid Framework
.container{
display: block;
margin: 0 auto;
width: 974px;
}
.column{
float: left;
margin-right: 10px;
}