Skip to content

Instantly share code, notes, and snippets.

@richtabor
Last active September 16, 2016 12:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richtabor/6a52a4e79de523be1ca374ec19107bdd to your computer and use it in GitHub Desktop.
Save richtabor/6a52a4e79de523be1ca374ec19107bdd to your computer and use it in GitHub Desktop.
<?php
// Functions
function prefix_setup()
// Classes
class Prefix_Class {}
// Global Variables
global $prefix_passengers;
// Action Hooks
do_action( ‘prefix_start_engine’ );
// Filter Hooks
$register = apply_filters( prefix_register );
// Non Third-Pary Script Handles
wp_enqueue_script( 'prefix-functions', get_theme_directory_uri() . 'js/custom/functions.js' );
// Non Third-Pary Style Handles
wp_enqueue_style( 'prefix-minified-style', get_theme_directory_uri() . 'style.min.css' );
// Images
add_image_size( 'prefix-large', 800, 600 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment