'891e42',
'border' => 'e7d9b9',
'text' => '333333',
'link' => 'bb5974',
'url' => 'bb5974',
);
break;
case 'forget-me-not':
$themecolors = array(
'bg' => '2f5480',
'border' => '5175b3',
'text' => '333333',
'link' => '123b66',
'url' => '123b66',
);
break;
case 'tiger-lily':
$themecolors = array(
'bg' => '5a5224',
'border' => 'f9cdb5',
'text' => '333333',
'link' => 'ca4d11',
'url' => 'ca4d11',
);
break;
}
}
if ( ! function_exists( 'bouquet_setup' ) ):
// Sets up theme defaults and registers support for various WordPress features.
function bouquet_setup() {
// This theme has an options page that lets users pick layout, color scheme, featured post title text and configure a twitter icon
//require_once( dirname( __FILE__ ) . '/inc/theme-options.php' );
// Make theme available for translation
load_theme_textdomain( 'bouquet', get_template_directory() . '/languages' );
$locale = get_locale();
$locale_file = get_template_directory() . "/languages/$locale.php";
if ( is_readable( $locale_file ) )
require_once( $locale_file );
// Add default posts and comments RSS feed links to head
add_theme_support( 'automatic-feed-links' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'bouquet' ),
) );
// This theme allows users to set a custom background.
add_custom_background();
// This theme allows users to upload a custom header.
define( 'HEADER_TEXTCOLOR', bouquet_header_text_color() );
define( 'HEADER_IMAGE', '' );
define( 'HEADER_IMAGE_WIDTH', 1100 ); // use width and height appropriate for your theme
define( 'HEADER_IMAGE_HEIGHT', 180 );
// Add a way for the custom header to be styled in the admin panel that controls
// custom headers. See bouquet_admin_header_style(), below.
add_custom_image_header( 'bouquet_header_style', 'bouquet_admin_header_style' );
// Add support for Post Formats
add_theme_support( 'post-formats', array( 'aside', 'image', 'gallery' ) );
}
endif; // bouquet_setup
// Tell WordPress to run bouquet_setup() when the 'after_setup_theme' hook is run.
add_action( 'after_setup_theme', 'bouquet_setup' );
// Load up the theme options
require( dirname( __FILE__ ) . '/inc/theme-options.php' );
// Get Bouquet options
function bouquet_get_options() {
$defaults = array(
'color_scheme' => 'pink-dogwood',
);
$options = get_option( 'bouquet_theme_options', $defaults );
return $options;
}
// Register our color schemes and add them to the style queue
function bouquet_color_registrar() {
$options = bouquet_get_options();
$color_scheme = $options['color_scheme'];
if ( ! empty( $color_scheme ) ) {
wp_register_style( $color_scheme, get_template_directory_uri() . '/colors/' . $color_scheme . '/' . $color_scheme . '.css', null, null );
wp_enqueue_style( $color_scheme );
}
}
add_action( 'wp_enqueue_scripts', 'bouquet_color_registrar' );
/**
* Returns the current floral scheme as selected in the theme options
*/
function bouquet_current_floral_scheme() {
$options = bouquet_get_options();
return $options['color_scheme'];
}
// Check the current color scheme and return a default header image that matches it
function bouquet_default_header_image() {
$floral_scheme = bouquet_current_floral_scheme();
return get_template_directory_uri() . '/colors/' . $floral_scheme . '/' . $floral_scheme . '-header.png';
}
// Set a default header text color
function bouquet_header_text_color() {
$floral_scheme = bouquet_current_floral_scheme();
if ( 'forget-me-not' == $floral_scheme ) :
return '123b66';
else :
return '891e42';
endif;
}
/**
* Add custom header support
*/
if ( ! function_exists( 'bouquet_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog
*
*/
function bouquet_header_style() {
// If no custom options for text are set, let's bail
if ( HEADER_TEXTCOLOR == get_header_textcolor() && '' == get_header_image() )
return;
// If we get this far, we have custom styles. Let's do this.
?>
Header admin panel.
*
* Referenced via add_custom_image_header() in bouquet_setup().
*
*/
function bouquet_admin_header_style() {
?>
__( 'Sidebar 1', 'bouquet' ),
'id' => 'sidebar-1',
'description' => __( 'Drag widgets here to activate the sidebar.', 'bouquet' ),
'before_widget' => '",
'before_title' => '
',
'after_title' => '
',
) );
}
add_action( 'init', 'bouquet_widgets_init' );
if ( ! function_exists( 'bouquet_content_nav' ) ):
// Display navigation to next/previous pages when applicable
function bouquet_content_nav( $nav_id ) {
global $wp_query;
?>
comment_type ) :
case 'pingback' :
case 'trackback' :
?>
%3$s%4$s',
esc_url( get_permalink() ),
esc_attr( get_the_date() ),
esc_html( get_the_date( 'M' ) ),
esc_html( get_the_date( 'j' ) )
);
}
endif;
function bouquet_post_meta() {
if ( is_singular() ) :
/* translators: used between list items, there is a space after the comma */
$category_list = get_the_category_list( __( ', ', 'bouquet' ) );
/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list( '', ', ' );
if ( ! bouquet_categorized_blog() ) {
// This blog only has 1 category so we just need to worry about tags in the meta text
if ( '' != $tag_list ) {
$meta_text = __( 'This entry was posted on %5$s and tagged %2$s. Bookmark the permalink.', 'bouquet' );
} else {
$meta_text = __( 'This entry was posted on %5$s. Bookmark the permalink.', 'bouquet' );
}
} else {
// But this blog has loads of categories so we should probably display them here
if ( '' != $tag_list ) {
$meta_text = __( 'This entry was posted on %5$s, in %1$s and tagged %2$s. Bookmark the permalink.', 'bouquet' );
} else {
$meta_text = __( 'This entry was posted on %5$s, in %1$s. Bookmark the permalink.', 'bouquet' );
}
} // end check for categories on this blog
printf(
$meta_text,
$category_list,
$tag_list,
get_permalink(),
the_title_attribute( 'echo=0' ),
esc_attr( get_the_date() )
);
else :
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( __( ', ', 'bouquet' ) );
$tags_list = get_the_tag_list( '', __( ', ', 'bouquet' ) );
if ( $categories_list && bouquet_categorized_blog() ) {
$meta_text = __( 'Posted on %1$s, in %2$s.', 'bouquet' );
} // End if $categories_list
if ( $tags_list ) {
$meta_text = __( 'Posted on %1$s, and tagged %3$s.', 'bouquet' );
} // End if $tags_list
printf(
$meta_text,
esc_attr( get_the_date() ),
$categories_list,
$tags_list
);
endif;
}
/**
* Add special classes to the WordPress body class.
*/
function bouquet_body_classes( $classes ) {
// If we have one sidebar active we have secondary content
if ( ! is_active_sidebar( 'sidebar-1' ) )
$classes[] = 'one-column';
return $classes;
}
add_filter( 'body_class', 'bouquet_body_classes' );
// Returns true if a blog has more than 1 category
function bouquet_categorized_blog() {
if ( false === ( $all_the_cool_cats = get_transient( 'all_the_cool_cats' ) ) ) {
// Create an array of all the categories that are attached to posts
$all_the_cool_cats = get_categories( array(
'hide_empty' => 1,
) );
// Count the number of categories that are attached to the posts
$all_the_cool_cats = count( $all_the_cool_cats );
set_transient( 'all_the_cool_cats', $all_the_cool_cats );
}
if ( '1' != $all_the_cool_cats ) {
// This blog has more than 1 category so bouquet_categorized_blog should return true
return true;
} else {
// This blog has only 1 category so bouquet_categorized_blog should return false
return false;
}
}
// Flush out the transients used in bouquet_categorized_blog
function bouquet_category_transient_flusher() {
// Like, beat it. Dig?
delete_transient( 'all_the_cool_cats' );
}
add_action( 'edit_category', 'bouquet_category_transient_flusher' );
add_action( 'save_post', 'bouquet_category_transient_flusher' );
// Filter in a link to a content ID attribute for the next/previous image links on image attachment pages
function bouquet_enhanced_image_navigation( $url ) {
global $post;
if ( wp_attachment_is_image( $post->ID ) )
$url = $url . '#main';
return $url;
}
add_filter( 'attachment_link', 'bouquet_enhanced_image_navigation' );
// Enqueue font styles
function bouquet_fonts() {
wp_enqueue_style( 'sorts mill goudy', 'http://fonts.googleapis.com/css?family=Sorts+Mill+Goudy:400' );
}
add_action( 'wp_enqueue_scripts', 'bouquet_fonts' );
// Dequeue font styles.
function bouquet_dequeue_fonts() {
/**
* We don't want to enqueue the font scripts if the blog
* has WP.com Custom Design and is using a 'Headings' font.
*/
if ( class_exists( 'TypekitData' ) ) {
if ( TypekitData::get( 'upgraded' ) ) {
$customfonts = TypekitData::get( 'families' );
if ( ! $customfonts )
return;
$headings = $customfonts['headings'];
if ( $headings['id'] ) {
wp_dequeue_style( 'sorts mill goudy' );
}
}
}
}
add_action( 'wp_enqueue_scripts', 'bouquet_dequeue_fonts' );
function bouquet_header_css() {
// Hide the theme-provided background image if the user adds a custom background image or color
if ( '' != get_background_image() || '' != get_background_color() || '' != get_header_image() ) : ?>