__('Primary Navigation', 'roots'), )); // Add post thumbnails (http://codex.wordpress.org/Post_Thumbnails) add_theme_support('post-thumbnails'); // set_post_thumbnail_size(150, 150, false); // add_image_size('category-thumb', 300, 9999); // 300px wide (and unlimited height) // Add post formats (http://codex.wordpress.org/Post_Formats) // add_theme_support('post-formats', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio', 'chat')); // Tell the TinyMCE editor to use a custom stylesheet add_editor_style('/assets/css/editor-style.css'); } add_action('after_setup_theme', 'roots_setup'); // Backwards compatibility for older than PHP 5.3.0 if (!defined('__DIR__')) { define('__DIR__', dirname(__FILE__)); } // Define helper constants $get_theme_name = explode('/themes/', get_template_directory()); define('THEME_NAME', next($get_theme_name)); define('RELATIVE_PLUGIN_PATH', str_replace(home_url() . '/', '', plugins_url())); define('RELATIVE_CONTENT_PATH', str_replace(home_url() . '/', '', content_url())); define('THEME_PATH', RELATIVE_CONTENT_PATH . '/themes/' . THEME_NAME);