This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Posts in Posts | |
Plugin URI: http://wolfiezero.com/wordpress/posts-in-posts/ | |
Version: 0.7a | |
Description: Grabs posts based on tag, category or just recent, and display them inline with a post | |
Author: WolfieZero | |
Author URI: http://wolfiezero.com/ | |
License: GPLv3 or later | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* If you do a lot of JS development, having a global function to include the | |
* source URL that corrects the URL if the DEBUG_JS flag is set to true or not. | |
*/ | |
define('DEBUG_JS', false); | |
/** | |
* Javascript Include | |
* Includes Javascript according to if it's in debug mode or not |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Place this function in your functions.php file to allow global access | |
* Update: 26 April 2012 11:35 - TEMPLATEPATH does the same job! | |
*/ | |
/** | |
* Theme Directory | |
* Returns the directory of the theme from root | |
* | |
* @param boolean $echo=false [description] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define('DEBUG_JS', false); // Debug JS; seperates out the unminimised files | |
/*****************************************************************************/ | |
/** | |
* Enqued Scripts | |
* Sets up scripts to be included on the site | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* What this script will do is add a new tracking metric to work out the actual | |
* size of a browser window (where as Google only tracks screen size). Goes | |
* great with responsive design! | |
* | |
* Adapted this from Zachstronaut (http://j.mp/RDztCB). | |
*/ | |
_gaq = [ | |
['_setAccount','UA-XXXXX-X'], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Development style output | |
sass --watch style/sass:style/css --style nested | |
exit 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Distribution style output | |
sass --watch style/sass:style/css --style compressed | |
exit 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// ** MySQL settings - You can get this info from your web host ** // | |
/** The name of the database for WordPress */ | |
define('DB_NAME', '...'); | |
/** MySQL database username */ | |
define('DB_USER', '...'); | |
/** MySQL database password */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ============================================================================== | |
; Editor configs | |
; ============================================================================== | |
; See editorconfig.org | |
; top-most EditorConfig file | |
root = true | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
/** | |
* ============================================================================= | |
* Typography | |
* ============================================================================= |
OlderNewer