This file contains 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 | |
//bold("<br><br>Shuttle Dumper included"); | |
/** | |
* Abstract dump file: provides common interface for writing | |
* data to dump files. | |
*/ | |
abstract class Shuttle_Dump_File { | |
/** | |
* File Handle | |
*/ |
This file contains 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
/** | |
* plugin.js | |
* | |
* Copyright, Moxiecode Systems AB | |
* Released under LGPL License. | |
* | |
* License: http://www.tinymce.com/license | |
* Contributing: http://www.tinymce.com/contributing | |
*/ |
This file contains 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 ob_start(); | |
if(! class_exists('PUR_Backup')) { | |
class PUR_Backup { | |
public function __construct () { | |
if ( current_user_can( 'edit_theme_options' ) ) { | |
add_action( 'admin_menu', array(&$this, 'add_page')); | |
} |
This file contains 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
(function($) { | |
$(function() { | |
$.fn.wptuts = function(options) { | |
var selector = $(this).selector; // Get the selector | |
// Set default options | |
var defaults = { | |
'preview' : '.preview-upload', | |
'text' : '.text-upload', | |
'button' : '.button-upload', | |
}; |
This file contains 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
custom wp_link_pages() for Foundation 2 & 3; | |
//:::: Step 1 :::::: add the following to functions.php ::::::::::::::::::// | |
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::// | |
<?php | |
add_action( 'reverie_page_links', 'reverie_page_links', 10, 1 ); | |
/** | |
* Modification of wp_link_pages() for custom styling for foundation 2 & 3 by Zurb for use within wordpress. |
This file contains 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
/* Author: Dan Beaven | |
* Company: Firestorm Graphics | |
* Web: http://firestorm-graphics.com | |
*/ | |
* Released under the GPL license | |
* http://www.opensource.org/licenses/gpl-license.php | |
* | |
* This is an add-on for WordPress | |
* http://wordpress.org/ | |
* |
This file contains 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 | |
/** | |
* Display a thumbnail from YouTube based off the embed code saved in the | |
* video post format metabox used by the CF Post Formats plugin | |
* | |
* @link https://github.com/crowdfavorite/wp-post-formats | |
* @link http://stackoverflow.com/a/6382259 | |
*/ | |
global $post; |
NewerOlder