File: /home/modernpainters.co.uk/public_html/wp-content/themes/honeypress/inc/theme-setup.php
<?php
if( !function_exists('honeypress_theme_setup')):
function honeypress_theme_setup()
{
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on honeypress, use a find and replace
* to change 'honeypress' to the name of your theme in all the template files.
*/
load_theme_textdomain('honeypress', HONEYPRESS_THEME_DIR .'/languages');
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support('title-tag');
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support('post-thumbnails');
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'honeypress-primary' => esc_html__('Primary' , 'honeypress')
));
// woocommerce support
add_theme_support( 'woocommerce' );
// Woocommerce Gallery Support
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
) );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support( 'custom-logo', array(
'height' => 45,
'width' => 235,
'flex-width' => true,
'flex-height' => true,
'header-text' => array( 'site-title', 'site-description' ),
)
);
add_editor_style();
// Gutenberg layout support.
add_theme_support( 'align-wide' );
add_theme_support( 'custom-background' );
}
endif;
add_action( 'after_setup_theme', 'honeypress_theme_setup' );
function honeypress_comment_field_to_bottom( $fields )
{
$comment_field = $fields['comment'];
unset( $fields['comment'] );
$fields['comment'] = $comment_field;
return $fields;
}
add_filter( 'comment_form_fields', 'honeypress_comment_field_to_bottom' );
add_filter( 'wp_get_attachment_image_attributes', function( $attr )
{
if( isset( $attr['class'] ) && 'custom-logo' === $attr['class'] )
$attr['class'] = 'custom-logo';
return $attr;
} );
add_filter( 'get_custom_logo', 'honeypress_change_logo_class' );
function honeypress_change_logo_class( $html ) {
$html = str_replace( 'custom-logo-link', 'navbar-brand', $html );
return $html;
}
add_action( 'admin_init', 'honeypress_customizer_css' );
function honeypress_customizer_css()
{
wp_enqueue_style( 'honeypress-pro-info', HONEYPRESS_THEME_URI . '/assets/css/pro-details.css' );
}