-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #268 from studiopress/develop
Genesis Sample 3.0.0 release
- Loading branch information
Showing
30 changed files
with
1,111 additions
and
1,705 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
node_modules | ||
vendor | ||
*.min.js | ||
js/responsive-menus.js |
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
/** | ||
* Genesis Sample child theme. | ||
* | ||
* Theme supports. | ||
* | ||
* @package Genesis Sample | ||
* @author StudioPress | ||
* @license GPL-2.0-or-later | ||
* @link https://my.studiopress.com/themes/genesis-sample/ | ||
*/ | ||
|
||
return array( | ||
'custom-logo' => array( | ||
'height' => 120, | ||
'width' => 700, | ||
'flex-height' => true, | ||
'flex-width' => true, | ||
), | ||
'html5' => array( | ||
'caption', | ||
'comment-form', | ||
'comment-list', | ||
'gallery', | ||
'search-form', | ||
), | ||
'genesis-accessibility' => array( | ||
'drop-down-menu', | ||
'headings', | ||
'search-form', | ||
'skip-links', | ||
), | ||
'genesis-after-entry-widget-area' => '', | ||
'genesis-footer-widgets' => 3, | ||
'genesis-menus' => array( | ||
'primary' => __( 'Header Menu', 'genesis-sample' ), | ||
'secondary' => __( 'Footer Menu', 'genesis-sample' ), | ||
), | ||
); |
Oops, something went wrong.