Skip to content

Instantly share code, notes, and snippets.

/**
Given to me by by giustina on #wordpress
**/
/**
To update WordPress options with the new blog location, use the following SQL command:
**/
var myApp = (function (){
myProps = {
foo : function (){
console.log("foo");
},
<ul>
<?php
foreach ( $GLOBALS['wp_filter'] as $tag => $priority_sets )
{
echo '<li><strong>' . $tag . '</strong><ul>' ;
/* Each [priority] */
foreach ( $priority_sets as $priority => $idxs ) {
echo '<li>' . $priority . '<ul>';
@sunilw
sunilw / gist:7098951
Last active December 26, 2015 05:09
working Gruntfile. Includes webserver. Watches for changes in filesystem. Runs compass, and produces sass debugging symbols.
module.exports = function (grunt){
grunt.initConfig({
compass : {
dist : {
options : {
sassDir : "sass",
cssDir : "css",
debugInfo : true
@sunilw
sunilw / gist:7146988
Created October 24, 2013 23:34
Wordpress get and formate post meta. Good for inspecting post meta.
<?php
// get post meta
$meta = get_post_meta( get_the_ID() );
echo "<pre>" ;
print_r($meta) ;
echo "</pre>" ;
?>
@sunilw
sunilw / gist:8469898
Last active January 3, 2016 13:29
Thinkful homework. Tax Calculator, version 3
#!/usr/bin/python
from __future__ import division
import sys
welcome = """
###################################
Meal Tip calculator
###################################
@sunilw
sunilw / gist:8512400
Last active January 3, 2016 19:59
Tip Calculator, version 4
#!/usr/bin/python
from __future__ import division
import argparse
parser = argparse.ArgumentParser()
parser.add_argument(
"--mealcost",
type=float,
@sunilw
sunilw / gist:8696321
Created January 29, 2014 20:28
Wordpress: hides editor on a particular page. In this case, the options page
// hide editor on options page
add_action( 'admin_init', 'hide_editor' );
function hide_editor() {
$post_id = $_GET['post'] ? $_GET['post'] : $_POST['post_ID'] ;
if( !isset( $post_id ) ) return;
// Hide the editor on the page titled 'options'
$page_options = get_the_title($post_id);
if($page_options == 'options'){
@sunilw
sunilw / wordpress functions list
Created January 31, 2014 03:21
wordpress functions text list
get_adjacent_post
get_boundary_post
get_children
get_extended
get_next_post
get_next_posts_link
next_posts_link
get_permalink
the_permalink
get_the_excerpt
@sunilw
sunilw / gist:9539401
Created March 13, 2014 23:35
wordpress ajax handler
<?php
/**
*
* Call functions from here
*
* Note: this file does not override the parent themes functions file.
* Instead, it gets loaded _before_ the parents functions.php gets loaded
*
*/
/*