get_template_directory_uri() . '/images/default-header.jpg',
'width' => 1800,
'height' => 260,
'flex-height' => true,
'flex-width' => true,
'uploads' => true,
'header-text' => true,
);
add_theme_support( 'custom-header', $customHeaderArgs );
add_theme_support( 'html5', array( 'search-form' ) );
}
function ildi_nav($location='header-menu') {
wp_nav_menu(
array(
'theme_location' => $location,
'menu' => '',
'container' => '',
'container_class' => '',
'container_id' => '',
'menu_class' => $location,
'menu_id' => '',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '
',
'depth' => 0,
'walker' => ''
)
);
}
function ildi_styles() {
wp_register_style('ildi', get_template_directory_uri() . '/style.css', array(), '1.0', 'all');
wp_enqueue_style('ildi');
}
function register_ildi_menus() {
register_nav_menus(array(
'header-menu' => __('Header Menu', 'ildi'),
'utility-menu' => __('Utility Links', 'ildi'),
'homepage-list' => __('HomePage List', 'ildi')
));
}
function ildi_register_sidebars() {
// 'description' => __( 'This is the sponsor and partner logos section of the footer and should display a "Sponsors" widget.', 'ildi' ),
register_sidebar(
array(
'id' => 'footer-sponsors',
'name' => __( 'Footer Sponsors', 'ildi' ),
'description' => __( 'This is the sponsor and partner logos section of the footer.', 'ildi' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
',
)
);
}
function ildi_nav_remove_empty_terms ( $items, $menu, $args ) {
global $wpdb;
$empty = $wpdb->get_col( "SELECT term_taxonomy_id FROM $wpdb->term_taxonomy WHERE count = 0" );
foreach ( $items as $key => $item ) {
if ( ( 'taxonomy' == $item->type ) && ( in_array( $item->object_id, $empty ) ) ) {
unset( $items[$key] );
}
}
return $items;
}
add_filter( 'wp_get_nav_menu_items', 'ildi_nav_remove_empty_terms', 10, 3 );
// add_action('init', 'register_ildi_menu');
add_action( 'after_setup_theme', 'register_ildi_menus', 0 );
add_action( 'wp_enqueue_scripts', 'ildi_styles' );
add_action( 'widgets_init', 'ildi_register_sidebars');
// add_action( 'widgets_init', function() { register_widget( 'Sponsors_Widget' ); } );
?>