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 | |
/** | |
* Below you will find all of the custom content used to | |
* create the demo site for the Dynamik Promote Skin. | |
*/ | |
?> | |
WordPress Menu Setup: Assign a menu to the "Primary Navigation Menu" as well as the Genesis "Header Right" Widget Area as stated below. | |
== BEGIN Widget Area Info == |
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 | |
/** | |
* Below you will find all of the custom content used to | |
* create the demo site for the Dynamik Commerce Skin. | |
*/ | |
?> | |
WordPress Menu Setup: Assign a menu to the "Primary Navigation Menu" as well as the "Secondary Navigation Menu". | |
== BEGIN Widget Area Info == |
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 | |
/** | |
* Below you will find all of the custom content used to | |
* create the demo site for the Dynamik Journal Skin. | |
*/ | |
?> | |
WordPress Menu Setup: Assign a menu to the "Primary Navigation Menu" as well as the Genesis "Header Right" Widget Area as stated below. | |
== BEGIN Widget Area Info == |
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 | |
/** | |
* Below you will find all of the custom content used to | |
* create the demo site for the Dynamik Startup Skin. | |
*/ | |
?> | |
WordPress Menu Setup: Assign a menu to the "Primary Navigation Menu" as well as the Genesis "Header Right" Widget Area as stated below. | |
== BEGIN Widget Area Info == |
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 | |
/** | |
* Below you will find all of the custom content used to | |
* create the demo site for the Dynamik Impress Skin. | |
*/ | |
?> | |
WordPress Menu Setup: Assign a menu to the "Primary Navigation Menu" as well as the Genesis "Header Right" Widget Area as stated below. | |
== BEGIN Widget Area Info == |
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
add_action( 'get_header', 'custom_child_full_width_singular_layout'); | |
// Force full-width-content layout on single pages and posts, but not "blog" page. | |
function custom_child_full_width_singular_layout() { | |
if ( ( is_page() || is_single() ) && ! is_page( 'blog' ) ) | |
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' ); | |
} |
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
if ( ! function_exists( 'exif_imagetype' ) ) { | |
function exif_imagetype( $filename ) { | |
if ( ( list( $width, $height, $type, $attr ) = getimagesize( $filename ) ) !== false ) | |
return $type; | |
return false; | |
} |