Skip to content

Instantly share code, notes, and snippets.

@rolka
rolka / gist:6412300
Created September 2, 2013 12:21
wp: home url
<?php echo esc_url( home_url( '/' ) ); ?>
@rolka
rolka / gist:6322152
Created August 23, 2013 17:57
jquery: open link in new tab
$(".modal a").attr("target","_blank");
@rolka
rolka / gist:6321627
Created August 23, 2013 17:02
css: font-face
@font-face {
font-family: 'yanone_kaffeesatzlight';
src: url('yanonekaffeesatz-light-webfont.eot');
src: url('yanonekaffeesatz-light-webfont.eot?#iefix') format('embedded-opentype'),
url('yanonekaffeesatz-light-webfont.woff') format('woff'),
url('yanonekaffeesatz-light-webfont.ttf') format('truetype'),
url('yanonekaffeesatz-light-webfont.svg#yanone_kaffeesatzlight') format('svg');
font-weight: normal;
font-style: normal;
@rolka
rolka / gist:6186397
Created August 8, 2013 16:49
wp: bloginfo('charset');
<?php bloginfo('charset'); ?>
@rolka
rolka / gist:6186126
Created August 8, 2013 16:21
wp: echo site_url();
<?php echo site_url(); ?>
@rolka
rolka / gist:6185936
Created August 8, 2013 16:03
wp: get_template_directory_uri();
<?php echo get_template_directory_uri(); ?>
@rolka
rolka / gist:6095077
Created July 27, 2013 14:56
PHP: short echo
<?=$a?>
@rolka
rolka / gist:6088282
Created July 26, 2013 11:49
HTML5 shiv
<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
@rolka
rolka / gist:6080763
Created July 25, 2013 15:18
wp: style.css
/*
Theme Name: Rose
Theme URI: the-theme's-homepage
Description: a-brief-description
Author: your-name
Author URI: your-URI
Template: use-this-to-define-a-parent-theme--optional
Version: a-number--optional
Tags: a-comma-delimited-list--optional
.
@rolka
rolka / gist:5984943
Created July 12, 2013 14:36
JS Methods
var object = "String cat object";
var length = object.length;
alert(length);
var index = object.indexOf("t");
var index2 = object.indexOf("t", index + 1);
alert ("First t " + index);