'ffffff', 'border' => 'eeeeee', 'text' => '555555', 'link' => '2970A6', 'url' => 'c8c7c7' ); $content_width = 595; function inove_setup() { add_theme_support( 'custom-background' ); } add_action( 'after_setup_theme', 'inove_setup' ); function inove_body_classes( $classes ) { // Remove body classes that conflict with legacy CSS $classes = array_merge( array_diff( $classes, array( 'attachment' ) ) ); return $classes; } add_filter( 'body_class', 'inove_body_classes' ); add_theme_support( 'automatic-feed-links' ); function inove_custom_background() { if ( '' != get_background_color() || '' != get_background_image() ) { ?>











'Sidebar', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' )); register_nav_menus( array( 'primary' => __( 'Primary Navigation' ), ) ); function inove_home_link( $menuitems, $args ) { // inove needs a cool home link $homemenu = '
  • Home
  • '; // but only in the primary menu--we don't want it showing up in widgets if ( $args->theme_location == 'primary' ) { $menuitems = $homemenu . $menuitems; } return $menuitems; } add_filter( 'wp_nav_menu_items', 'inove_home_link', 10, 2 ); function inove_page_menu() { // fallback for primary navigation global $home_menu; ?>
  • >
    $depth, 'max_depth' => $args['max_depth'])); ?>
    comment_approved == '0') : ?>

  • >
    tag based on what is being viewed. * * @since INove 1.4.6 */ function inove_wp_title( $title, $sep ) { global $page, $paged; if ( is_feed() ) return $title; // Add the blog name $title .= get_bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) $title .= " $sep $site_description"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) $title .= " $sep " . sprintf( __( 'Page %s', 'inove' ), max( $paged, $page ) ); return $title; } add_filter( 'wp_title', 'inove_wp_title', 10, 2 );