ildi-wp/functions.php

66 lines
1.9 KiB
PHP
Raw Normal View History

2018-07-18 08:03:46 -05:00
<?php
if (function_exists('add_theme_support')) {
2018-07-19 21:03:42 -05:00
add_theme_support('automatic-feed-links');
2018-07-18 08:03:46 -05:00
add_theme_support('post-thumbnails');
// add_image_size('large', 700, '', true);
// add_image_size('medium', 250, '', true);
// add_image_size('small', 120, '', true);
// add_image_size('custom-size', 700, 200, true); // call using the_post_thumbnail('custom-size');
2018-07-19 21:03:42 -05:00
$customHeaderArgs = array(
'default-image' => get_template_directory_uri() . '/images/default-header.png',
'width' => 1800,
'height' => 260,
'flex-height' => true,
'flex-width' => true,
'uploads' => true,
'header-text' => true,
);
add_theme_support( 'custom-header', $customHeaderArgs );
2018-07-18 08:03:46 -05:00
}
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' => '<ul class="%2$s">%3$s</ul>',
'depth' => 0,
'walker' => ''
)
);
}
2018-07-24 08:20:35 -05:00
function ildi_styles() {
wp_register_style('ildi', get_template_directory_uri() . '/style.css', array(), '1.0', 'all');
wp_enqueue_style('ildi');
}
2018-07-18 08:03:46 -05:00
function register_ildi_menus() {
register_nav_menus(array(
'header-menu' => __('Header Menu', 'ildi'),
'social-menu' => __('Social Links', 'ildi'),
'footer-menu' => __('Footer Menu', 'ildi')
));
}
// add_action('init', 'register_ildi_menu');
add_action( 'after_setup_theme', 'register_ildi_menus', 0 );
2018-07-24 08:20:35 -05:00
add_action('wp_enqueue_scripts', 'ildi_styles');
2018-07-18 08:03:46 -05:00
?>