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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- Generated by: TmTheme-Editor --> | |
<!-- ============================================ --> | |
<!-- app: http://tmtheme-editor.herokuapp.com --> | |
<!-- code: https://github.com/aziz/tmTheme-Editor --> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Once Upon a Time</string> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- Generated by: TmTheme-Editor --> | |
<!-- ============================================ --> | |
<!-- app: http://tmtheme-editor.herokuapp.com --> | |
<!-- code: https://github.com/aziz/tmTheme-Editor --> | |
<plist version="1.0"> | |
<dict> | |
<key>author</key> | |
<string>Jessica Allen</string> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- Generated by: TmTheme-Editor --> | |
<!-- ============================================ --> | |
<!-- app: http://tmtheme-editor.herokuapp.com --> | |
<!-- code: https://github.com/aziz/tmTheme-Editor --> | |
<plist version="1.0"> | |
<dict> | |
<key>author</key> | |
<string>Jessica Allen</string> |
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 | |
/* | |
* Plugin Name: TCBA Events Shortcode | |
* Plugin URI: https://gist.github.com/megmorsie/f3f3b51adfa677dc243a147a26090740 | |
* Description: Sets up a shortcode [events] to be used to display an unordered list of upcoming events (set to 5). | |
* Version: 1.0 | |
* Author: Cle GiveCamp | |
* Author URI: http://clevelandgivecamp.org | |
* License: GPL2 | |
* Text Domain: cle_givecamp |
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
/* @import url('https://fonts.googleapis.com/css?family=Acme|Vast+Shadow'); */ | |
h3 { | |
font-size: 35px !important; | |
/* font-family: "Vast Shadow"; */ | |
} | |
@media screen and (max-width: 767px) { | |
.has-header-image.twentyseventeen-front-page .site-branding, .has-header-video.twentyseventeen-front-page .site-branding, .has-header-image.home.blog .site-branding, .has-header-video.home.blog .site-branding { | |
display: block; | |
height: auto; |
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 | |
/** | |
* Function to list filters on a specified hook. | |
* Source: https://stackoverflow.com/a/5225021 | |
*/ | |
function rose_print_filters_for( $hook = '' ) { | |
global $wp_filter; | |
if ( empty($hook) || !isset($wp_filter[$hook]) ) { | |
return; | |
} |
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 | |
// Put in functions.php | |
/** | |
* Image Sizes | |
*/ | |
add_image_size( 'featured', 960, 250, array( 'center', 'center' ) ); | |
add_image_size( 'cropped', 450, 180, array( 'center', 'center' ) ); |
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
/** | |
* ///////////////////// | |
* /// Media Queries /// | |
* //////////////////// | |
* | |
* Widths by Device: | |
* - iPhone 5 - Vertical = 320px | |
* - iPhone 5 - Horizontal = 568px | |
* - iPhone 6 - Vertical = 375px | |
* - iPhone 6 - Horizontal = 667px |
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 | |
// This file increments hex values and keeps any leading zeroes. | |
// Example: Use to generate a list of MySQL CREATE DATABASE functions to set up database shards. | |
$x = 0; // Counter | |
$hex = "00"; // When the amount of digits changes in $hex, remember to change the str_pad() function, too. | |
while ($x < 256) { // The amount of times to loop. | |
echo "$hex <br />"; | |
$hex = dechex(hexdec($hex)+1); // Increment the hex value. |
NewerOlder