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 | |
define('DB_NAME', 'hillmath'); | |
/** MySQL database username */ | |
define('DB_USER', 'firstfound'); | |
/** MySQL database password */ | |
define('DB_PASSWORD', 'firstfound'); | |
/** MySQL hostname */ | |
define('DB_HOST', 'wiki.firstfound.local'); | |
/** Database Charset to use in creating database tables. */ |
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 echo get_site_url(); ?> | |
<?php echo get_stylesheet_directory_uri(); ?> | |
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/image-brochure.png" alt=""/> |
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
// Test data | |
$test_array = array( | |
'one' => __('One', 'options_framework_theme'), | |
'two' => __('Two', 'options_framework_theme'), | |
'three' => __('Three', 'options_framework_theme'), | |
'four' => __('Four', 'options_framework_theme'), | |
'five' => __('Five', 'options_framework_theme') | |
); | |
// Multicheck Array |
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 placeholder for subscribe form | |
$(".mc_input").focus(function(){ | |
showEmptyLabels(); | |
$(this).siblings("label").stop().fadeOut(); | |
}); | |
$(".mc_input").blur(function(){ | |
showEmptyLabels(); | |
}); | |
$(".mc_merge_var label").bind("click", function() { | |
$(this).siblings("div").find("input, textarea").focus(); |
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 | |
/** | |
* The base configurations of the WordPress. | |
* | |
* This file has the following configurations: MySQL settings, Table Prefix, | |
* Secret Keys, WordPress Language, and ABSPATH. You can find more information | |
* by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing | |
* wp-config.php} Codex page. You can get the MySQL settings from your web host. | |
* | |
* This file is used by the wp-config.php creation script during the |
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 | |
/* Remove Parent Theme Foundation Files */ | |
wp_deregister_style("foundation-app"); | |
wp_deregister_script("foundation-reveal"); | |
wp_deregister_script("foundation-orbit"); | |
wp_deregister_script("foundation-custom-forms"); | |
wp_deregister_script("foundation-placeholder"); | |
wp_deregister_script("foundation-tooltips"); | |
wp_deregister_script("foundation-app"); | |
wp_deregister_script("foundation-off-canvas"); |
NewerOlder