after_setup_theme similar to twentyeleven, reverting
92e91d3bb5 after unexpected behavior
62 lines
2.4 KiB
PHP
62 lines
2.4 KiB
PHP
<?php
|
|
|
|
require_once get_template_directory() . '/inc/roots-activation.php'; // activation
|
|
require_once get_template_directory() . '/inc/roots-options.php'; // theme options
|
|
require_once get_template_directory() . '/inc/roots-cleanup.php'; // cleanup
|
|
require_once get_template_directory() . '/inc/roots-htaccess.php'; // rewrites for assets, h5bp htaccess
|
|
require_once get_template_directory() . '/inc/roots-hooks.php'; // hooks
|
|
require_once get_template_directory() . '/inc/roots-actions.php'; // actions
|
|
require_once get_template_directory() . '/inc/roots-widgets.php'; // widgets
|
|
require_once get_template_directory() . '/inc/roots-custom.php'; // custom functions
|
|
|
|
$roots_options = roots_get_theme_options();
|
|
|
|
// set the maximum 'Large' image width to the maximum grid width
|
|
if (!isset($content_width)) {
|
|
global $roots_options;
|
|
$roots_css_framework = $roots_options['css_framework'];
|
|
switch ($roots_css_framework) {
|
|
case 'blueprint': $content_width = 950; break;
|
|
case '960gs_12': $content_width = 940; break;
|
|
case '960gs_16': $content_width = 940; break;
|
|
case '960gs_24': $content_width = 940; break;
|
|
case '1140': $content_width = 1140; break;
|
|
case 'adapt': $content_width = 940; break;
|
|
default: $content_width = 950; break;
|
|
}
|
|
}
|
|
|
|
function roots_setup() {
|
|
load_theme_textdomain('roots', get_template_directory() . '/lang');
|
|
|
|
// tell the TinyMCE editor to use editor-style.css
|
|
// if you have issues with getting the editor to show your changes then use the following line:
|
|
// add_editor_style('editor-style.css?' . time());
|
|
add_editor_style('editor-style.css');
|
|
|
|
add_theme_support('post-thumbnails');
|
|
|
|
// http://codex.wordpress.org/Post_Formats
|
|
// add_theme_support('post-formats', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio', 'chat'));
|
|
|
|
add_theme_support('menus');
|
|
register_nav_menus(array(
|
|
'primary_navigation' => __('Primary Navigation', 'roots'),
|
|
'utility_navigation' => __('Utility Navigation', 'roots')
|
|
));
|
|
}
|
|
|
|
add_action('after_setup_theme', 'roots_setup');
|
|
|
|
// create widget areas: sidebar, footer
|
|
$sidebars = array('Sidebar', 'Footer');
|
|
foreach ($sidebars as $sidebar) {
|
|
register_sidebar(array('name'=> $sidebar,
|
|
'before_widget' => '<article id="%1$s" class="widget %2$s"><div class="container">',
|
|
'after_widget' => '</div></article>',
|
|
'before_title' => '<h3>',
|
|
'after_title' => '</h3>'
|
|
));
|
|
}
|
|
|
|
?>
|