str_replace( ‘http:’, ”, $image ) ) );
}
}
//* Add new image sizes
add_image_size( ‘home-bottom’, 380, 150, TRUE );
add_image_size( ‘home-middle’, 380, 380, TRUE );
//* Add support for custom background
add_theme_support( ‘custom-background’ );
//* Add support for custom header
add_theme_support( ‘custom-header’, array(
‘header_image’ => ”,
‘header-selector’ => ‘.site-title a’,
‘header-text’ => false,
‘height’ => 60,
‘width’ => 300,
) );
//* Add support for additional color style options
add_theme_support( ‘genesis-style-selector’, array(
‘agency-pro-blue’ => __( ‘Agency Pro Blue’, ‘agency’ ),
‘agency-pro-green’ => __( ‘Agency Pro Green’, ‘agency’ ),
‘agency-pro-orange’ => __( ‘Agency Pro Orange’, ‘agency’ ),
‘agency-pro-red’ => __( ‘Agency Pro Red’, ‘agency’ ),
) );
//* Add support for 3-column footer widgets
add_theme_support( ‘genesis-footer-widgets’, 3 );
//* Add support for after entry widget
add_theme_support( ‘genesis-after-entry-widget-area’ );
//* Reposition the header
remove_action( ‘genesis_header’, ‘genesis_header_markup_open’, 5 );
remove_action( ‘genesis_header’, ‘genesis_do_header’ );
remove_action( ‘genesis_header’, ‘genesis_header_markup_close’, 15 );
add_action( ‘genesis_before’, ‘genesis_header_markup_open’, 5 );
add_action( ‘genesis_before’, ‘genesis_do_header’, 10 );
add_action( ‘genesis_before’, ‘genesis_header_markup_close’, 15 );
//* Remove the site description
remove_action( ‘genesis_site_description’, ‘genesis_seo_site_description’ );
//* Reposition the secondary navigation menu
remove_action( ‘genesis_after_header’, ‘genesis_do_subnav’ );
add_action( ‘genesis_footer’, ‘genesis_do_subnav’, 7 );
//* Reduce the secondary navigation menu to one level depth
add_filter( ‘wp_nav_menu_args’, ‘agency_secondary_menu_args’ );
function agency_secondary_menu_args( $args ){
if( ‘secondary’ != $args[‘theme_location’] )
return $args;
$args[‘depth’] = 1;
return $args;
}
//* Relocate after entry widget
remove_action( ‘genesis_after_entry’, ‘genesis_after_entry_widget_area’ );
add_action( ‘genesis_after_entry’, ‘genesis_after_entry_widget_area’, 5 );
//* Remove comment form allowed tags
add_filter( ‘comment_form_defaults’, ‘agency_remove_comment_form_allowed_tags’ );
function agency_remove_comment_form_allowed_tags( $defaults ) {
$defaults[‘comment_notes_after’] = ”;
return $defaults;
}
//* Register widget areas
genesis_register_sidebar( array(
‘id’ => ‘home-top’,
‘name’ => __( ‘Home Top’, ‘agency’ ),
‘description’ => __( ‘This is the top section of the homepage.’, ‘agency’ ),
) );
genesis_register_sidebar( array(
‘id’ => ‘home-middle’,
‘name’ => __( ‘Home Middle’, ‘agency’ ),
‘description’ => __( ‘This is the middle section of the homepage.’, ‘agency’ ),
) );
genesis_register_sidebar( array(
‘id’ => ‘home-bottom’,
‘name’ => __( ‘Home Bottom’, ‘agency’ ),
‘description’ => __( ‘This is the bottom section of the homepage.’, ‘agency’ ),
) );