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
-- | |
-- Table structure for table `player_roster` | |
-- | |
CREATE TABLE IF NOT EXISTS `player_roster` ( | |
`ID` bigint(20) unsigned NOT NULL, | |
`last_name` varchar(20) DEFAULT NULL, | |
`first_name` varchar(15) DEFAULT NULL, | |
`school` varchar(30) DEFAULT NULL, | |
`guardian` varchar(20) DEFAULT NULL, |
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
.ui-datepicker { | |
width: 17em; | |
padding: .2em .2em 0; | |
display: none; | |
background-color: #e6e6e6; | |
} | |
.ui-datepicker .ui-datepicker-header { | |
position: relative; | |
padding: .2em 0; | |
border: 0px; |
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
.gform_wrapper ul { | |
padding-left: 0; | |
list-style: none; | |
} | |
.gform_wrapper li { | |
margin-bottom: 15px; | |
} | |
.gform_wrapper form { | |
margin-bottom: 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
//Adding the Open Graph in the Language Attributes | |
function add_opengraph_doctype( $output ) { | |
return $output . ' xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"'; | |
} | |
add_filter('language_attributes', 'add_opengraph_doctype'); | |
//Lets add Open Graph Meta Info | |
function insert_fb_in_head() { | |
global $post; |
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 | |
add_filter( 'genesis_attr_site-inner', 'sk_attributes_site_inner' ); | |
/** | |
* Add attributes for site-inner element. | |
* | |
* @since 2.0.0 | |
* | |
* @param array $attributes Existing attributes. | |
* |
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
// Add background-color to .footer-widgets | |
add_filter( 'genesis_attr_footer-widgets', 'ap_attributes_footer_widgets' ); | |
function ap_attributes_footer_widgets( $attributes ) { | |
$background = get_field('footer_widgets_bg', option); | |
$attributes['style'] = 'background-color:' . $background . ';'; | |
return $attributes; | |
} |
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 | |
function pippin_show_fruits() { | |
$fruits = array( | |
'apples', | |
'oranges', | |
'kumkwats', | |
'dragon fruit', | |
'peaches', | |
'durians' | |
); |
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 | |
/** | |
* Genesis Framework. | |
* | |
* WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances. | |
* Please do all modifications in the form of a child theme. | |
* | |
* @package Genesis\Templates | |
* @author StudioPress | |
* @license GPL-2.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 | |
include_once (get_template_directory() . '/lib/init.php'); | |
load_child_theme_textdomain('mbi', apply_filters('child_theme_textdomain', get_stylesheet_directory() . '/languages', 'mbi')); | |
define('BW_CONTENT_ASSETS_DIR', trailingslashit(trailingslashit(content_url()) . 'assets')); | |
define('BW_CHILD_NAME', __('MBI STAFFING', 'mbi')); | |
define('BW_CHILD_URL', 'http://mbistaffing.com'); | |
define('BW_CHILD_VERSION', '1.0.0'); | |
define('BW_CHILD_FILE_PATH', get_stylesheet_directory()); | |
define('BW_CHILD_FILE_URL', get_stylesheet_directory_uri()); |