100,
'width' => 250,
'flex-height' => true,
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'comment-form',
'comment-list',
'gallery',
'caption',
) );
add_action( 'wp_enqueue_scripts', function() {
wp_enqueue_style( 'dashicons' );
} );
add_theme_support( 'custom-background', array(
'default-color' => 'ffffff'
) );
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'advisory' ),
'footer' => __( 'Footer Menu', 'advisory' ),
) );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
add_editor_style( 'editor-style.css' );
}
endif; // advisory_setup
add_action( 'after_setup_theme', 'advisory_setup' );
function advisory_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'advisory' ),
'description' => __( 'Appears on blog page sidebar', 'advisory' ),
'id' => 'sidebar-1',
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 1', 'advisory' ),
'description' => __( 'Appears on footer', 'advisory' ),
'id' => 'footer-widget-column-1',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 2', 'advisory' ),
'description' => __( 'Appears on footer', 'advisory' ),
'id' => 'footer-widget-column-2',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 3', 'advisory' ),
'description' => __( 'Appears on footer', 'advisory' ),
'id' => 'footer-widget-column-3',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 4', 'advisory' ),
'description' => __( 'Appears on footer', 'advisory' ),
'id' => 'footer-widget-column-4',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
',
) );
}
add_action( 'widgets_init', 'advisory_widgets_init' );
function advisory_font_url(){
$font_url = '';
/* Translators: If there are any character that are not
* supported by Poppins, trsnalate this to off, do not
* translate into your own language.
*/
$poppins = _x('on','Poppins:on or off','advisory');
if('off' !== $poppins ){
$font_family = array();
if('off' !== $poppins){
$font_family[] = 'Poppins:400,600,700,800';
}
$query_args = array(
'family' => urlencode(implode('|',$font_family)),
);
$font_url = add_query_arg($query_args,'//fonts.googleapis.com/css');
}
return $font_url;
}
function advisory_scripts() {
wp_enqueue_style('advisory-font', advisory_font_url(), array());
wp_enqueue_style( 'advisory-basic-style', get_stylesheet_uri() );
wp_enqueue_style( 'nivo-slider', get_template_directory_uri()."/css/nivo-slider.css" );
wp_enqueue_style( 'fontawesome-all-style', get_template_directory_uri().'/fontsawesome/css/fontawesome-all.css' );
wp_enqueue_style( 'advisory-responsive', get_template_directory_uri()."/css/responsive.css" );
wp_enqueue_script( 'jquery-nivo-slider', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') );
wp_enqueue_script( 'advisory-editable', get_template_directory_uri() . '/js/editable.js' );
wp_enqueue_script( 'advisory', get_template_directory_uri() . '/js/navigation.js', array(), '01062020', true );
wp_localize_script( 'advisory', 'advisoryscreenreadertext', array(
'expandMain' => __( 'Open the main menu', 'advisory' ),
'collapseMain' => __( 'Close the main menu', 'advisory' ),
'expandChild' => __( 'expand submenu', 'advisory' ),
'collapseChild' => __( 'collapse submenu', 'advisory' ),
) );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'advisory_scripts' );
function advisory_ie_stylesheet(){
// Load the Internet Explorer specific stylesheet.
wp_enqueue_style('advisory-ie', get_template_directory_uri().'/css/ie.css', array( 'advisory-style' ), '20190312' );
wp_style_add_data('advisory-ie','conditional','lt IE 10');
// Load the Internet Explorer 8 specific stylesheet.
wp_enqueue_style( 'advisory-ie8', get_template_directory_uri() . '/css/ie8.css', array( 'advisory-style' ), '20190312' );
wp_style_add_data( 'advisory-ie8', 'conditional', 'lt IE 9' );
// Load the Internet Explorer 7 specific stylesheet.
wp_enqueue_style( 'advisory-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'advisory-style' ), '20190312' );
wp_style_add_data( 'advisory-ie7', 'conditional', 'lt IE 8' );
}
add_action('wp_enqueue_scripts','advisory_ie_stylesheet');
if ( ! function_exists( 'advisory_the_custom_logo' ) ) :
/**
* Displays the optional custom logo.
*
* Does nothing if the custom logo is not available.
*
*/
function advisory_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
endif;
/**
* Customize Pro included.
*/
require_once get_template_directory() . '/customize-pro/class-customize.php';
/**
* WooCommerce Compatibility
*/
add_action( 'after_setup_theme', 'advisory_setup_woocommerce_support' );
function advisory_setup_woocommerce_support()
{
add_theme_support('woocommerce');
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
}
/**
* Fix skip link focus in IE11.
*
* This does not enqueue the script because it is tiny and because it is only for IE11,
* thus it does not warrant having an entire dedicated blocking script being loaded.
*
* @link https://git.io/vWdr2
*/
function advisory_skip_link_focus_fix() {
// The following is minified via `terser --compress --mangle -- js/skip-link-focus-fix.js`.
?>