mirror of
https://github.com/10h30/trestle.git
synced 2026-07-14 12:16:29 +09:00
Merge branch 'dev' of github.com:MickeyKay/trestle into dev
This commit is contained in:
@@ -29,8 +29,13 @@ Here are some of Trestle's many features, check out the [Trestle Demo](http://de
|
||||
* Examples and usage can all be viewed on the [Trestle Demo](http://demo.mightyminnow.com/theme/trestle/)
|
||||
|
||||
#### To Do
|
||||
* Add header for Github Updater plugin
|
||||
* Rework menu CSS for simplicity (general / primary / secondary / header)
|
||||
* Add Grunt support for
|
||||
- CSSComb
|
||||
- Sass (one day)
|
||||
* Convert non-theme functionality to separate Genesis-dependant plugin
|
||||
* Add in Grunt support for:
|
||||
* Sass
|
||||
* Auto-ordering of CSS (CSSComb)
|
||||
* Translation
|
||||
* Check other themes for other ideas. . .
|
||||
* Switch to customizer for theme options instead of Genesis panel (pros? cons?)
|
||||
* Remove custom background CSS that doesn't make sense (different max-widths, etc)
|
||||
* Weird extra icons on accordions on demo site.
|
||||
|
||||
+12
-10
@@ -36,17 +36,19 @@ add_filter( 'genesis_theme_settings_defaults', 'trestle_custom_defaults' );
|
||||
function trestle_custom_defaults( $defaults ) {
|
||||
// Trestle default key/value pairs
|
||||
$trestle_defaults = array(
|
||||
'trestle_layout' => 'solid',
|
||||
'trestle_nav_primary_location' => 'full',
|
||||
'trestle_auto_nav' => 0,
|
||||
'trestle_auto_nav_depth' => 0,
|
||||
'trestle_include_home_link' => 0,
|
||||
'trestle_home_link_text' => __( 'Home', 'trestle' ),
|
||||
'trestle_nav_button_text' => '[icon name="icon-list-ul"] ' . __( 'Navigation', 'trestle' ),
|
||||
'trestle_read_more_text' => __( 'Read More »', 'trestle' ),
|
||||
'trestle_revisions_number' => 3,
|
||||
'trestle_layout' => 'solid',
|
||||
'trestle_logo_url' => '',
|
||||
'trestle_logo_url_mobile' => '',
|
||||
'trestle_nav_primary_location' => 'full',
|
||||
'trestle_auto_nav' => 0,
|
||||
'trestle_auto_nav_depth' => 0,
|
||||
'trestle_include_home_link' => 0,
|
||||
'trestle_home_link_text' => __( 'Home', 'trestle' ),
|
||||
'trestle_nav_button_text' => '[icon name="icon-list-ul"] ' . __( 'Navigation', 'trestle' ),
|
||||
'trestle_read_more_text' => __( 'Read More »', 'trestle' ),
|
||||
'trestle_revisions_number' => 3,
|
||||
'trestle_footer_widgets_number' => 3,
|
||||
'trestle_equal_height_cols' => 1,
|
||||
'trestle_equal_height_cols' => 1,
|
||||
'trestle_equal_cols_breakpoint' => 768,
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user