Skip to content

Instantly share code, notes, and snippets.

@lizkaraffa
lizkaraffa / orginal-home.php
Created January 12, 2016 18:12
Original template file before my changes.
<?php $pageOne = get_theme_mod( 'page_one', '2' ); $pageTwo = get_theme_mod( 'page_two', '2' ); $pageThree = get_theme_mod( 'page_three', '2' ); ?>
<?php if ( 'false' == ( $pageOne ) || '' != ( $pageOne ) && 'false' == ( $pageTwo ) || '' != ( $pageTwo ) && 'false' == ( $pageThree ) || '' != ( $pageThree ) ) { ?>
<!-- BEGIN .row -->
<div class="row featured-pages">
<!-- BEGIN .content -->
<div class="content">
<!-- BEGIN .sixteen columns -->
@lizkaraffa
lizkaraffa / gist:8467936
Created January 17, 2014 03:30
I've been studying jQuery from two different sources and I understand the longer syntax structure of source A but I want to get familiar with how to chain things like in source B.
//Source A shows this syntax as the proper way to write all jQuery code.
$(document.ready(function(){
$('thingToInteractWith').event(function(){
$('thingToAffect').effect();
});
});
//Another example below
@lizkaraffa
lizkaraffa / gist:8330140
Last active January 2, 2016 16:29
Here is the challenge: Sort the 'saying2' array, on about line 19, so that the words are listed in length order. The shortest first. Use the 'length' property on the strings in the sort function. So I did it and then this is the error message they're giving me: Bummer! The 'saying2' was 'The,quick,brown,fox,jumped,over,the,lazy,dog's,back' not '…
<!DOCTYPE html>
<html lang="en">
<head>
<title> JavaScript Foundations: Arrays</title>
<style>
html {
background: #FAFAFA;
font-family: sans-serif;
}
</style>
@lizkaraffa
lizkaraffa / index.html
Created November 4, 2013 23:45
Add the appropriate CSS within the same media query that will force the “love at first bite” illustration to disappear. I added lines 67-69 in styles.css.
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css" type="text/css">
<link href="//fonts.googleapis.com/css?family=Nunito:400,300,700" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<div id="intro">
<div class="grid_4">
function swell_theme_customizer( $wp_customize ) {
//-------------------------------------------------------------------------------------------------------------------//
// Page Templates
//-------------------------------------------------------------------------------------------------------------------//
$wp_customize->add_section( 'swell_templates_section' , array(
'title' => __( 'Page Templates', 'swelltheme' ),
'priority' => 103,
) );
<?
/**
* @author Joachim Kudish
* @uses SLD Custom Content Types & Taxonomies
* types & taxonomies
*/
if (function_exists('sld_register_post_type')) :
public function add_meta_box( $post_type ) {
$post_type = 'notes'; //limit meta box to certain post types
add_meta_box(
'handshaken_note_settings',
__( 'Note Settings', 'handshaken' ),
array( $this, 'render_meta_box_content_note' ),
$post_type,
'advanced',
'high'
);
<?php
/**
* @package Basis
*/
if ( ! function_exists( 'basis_customize_colors' ) ) :
/**
* Add color theme options via the WordPress Customizer.
*
* @since 1.0.
@lizkaraffa
lizkaraffa / overlay.js
Created July 21, 2014 19:51
Overlay functionality
/**
* overlay.js
*
* Handles toggling the whole screen overlay when nav button is clicked.
*/
(function(){
$("#slider-btn").toggle(function() {
$('#page-overlay').css('display','block');
$('.menu-main-menu-container').css('display','block');
@lizkaraffa
lizkaraffa / front-page.php
Created July 12, 2014 03:09
Front Page of Port LBC
<?php
/**
* Template: Front Page
*
* @package port
*/
get_header(); ?>
<div class="wrapper">