/**
* Theme functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Surya_Chandra
*/
if ( ! function_exists( 'surya_chandra_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function surya_chandra_setup() {
/*
* Make theme available for translation.
*/
load_theme_textdomain( 'surya-chandra-lite', get_template_directory() . '/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
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 two locations.
register_nav_menus( array(
'menu-1' => esc_html__( 'Primary', 'surya-chandra-lite' ),
'menu-footer' => esc_html__( 'Footer', 'surya-chandra-lite' ),
'menu-404' => esc_html__( '404 Quick Links', 'surya-chandra-lite' ),
) );
/*
* 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 theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
// Admin editor style.
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
add_editor_style( array( surya_chandra_fonts_url(), 'css/editor-style' . $min . '.css' ) );
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support( 'custom-logo', array(
'height' => 250,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
) );
// Add support for Custom Header.
add_theme_support( 'custom-header', apply_filters( 'surya_chandra_custom_header_args', array(
'default-image' => get_template_directory_uri() . '/images/default-banner.jpg',
'width' => 1920,
'height' => 500,
'flex-height' => true,
'header-text' => false,
) ) );
// Register default headers.
register_default_headers( array(
'default-banner' => array(
'url' => '%s/images/default-banner.jpg',
'thumbnail_url' => '%s/images/default-banner.jpg',
'description' => esc_html_x( 'Default Banner', 'header image description', 'surya-chandra-lite' ),
),
) );
// Load Supports.
require trailingslashit( get_template_directory() ) . 'inc/support.php';
}
endif;
add_action( 'after_setup_theme', 'surya_chandra_setup' );
/**
* Set the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
* @global int $content_width
*/
function surya_chandra_content_width() {
$GLOBALS['content_width'] = apply_filters( 'surya_chandra_content_width', 640 );
}
add_action( 'after_setup_theme', 'surya_chandra_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function surya_chandra_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Primary Sidebar', 'surya-chandra-lite' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here to appear in your primary sidebar.', 'surya-chandra-lite' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Secondary Sidebar', 'surya-chandra-lite' ),
'id' => 'sidebar-2',
'description' => esc_html__( 'Add widgets here to appear in your secondary sidebar.', 'surya-chandra-lite' ),
'before_widget' => '',
'before_title' => '',
) );
for ( $i = 1; $i <= 4; $i++ ) {
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'surya-chandra-lite' ), $i ),
'id' => 'footer-' . $i,
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
}
}
add_action( 'widgets_init', 'surya_chandra_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function surya_chandra_scripts() {
$theme_version = wp_get_theme()->get( 'Version' );
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/third-party/font-awesome/css/fontawesome-all' . $min . '.css', '', '5.0.13' );
$fonts_url = surya_chandra_fonts_url();
if ( ! empty( $fonts_url ) ) {
wp_enqueue_style( 'surya-chandra-google-fonts', $fonts_url, array(), null );
}
wp_enqueue_style( 'surya-chandra-style', get_stylesheet_uri(), array(), $theme_version );
wp_enqueue_script( 'surya-chandra-navigation', get_template_directory_uri() . '/js/navigation.js', array( 'jquery' ), '20151215', true );
wp_localize_script( 'surya-chandra-navigation', 'suryaChandraLiteOptions', array(
'screenReaderText' => array(
'expand' => esc_html__( 'expand child menu', 'surya-chandra-lite' ),
'collapse' => esc_html__( 'collapse child menu', 'surya-chandra-lite' ),
),
) );
wp_enqueue_script( 'surya-chandra-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true );
wp_enqueue_script( 'surya-chandra-custom', get_template_directory_uri() . '/js/custom' . $min . '.js', array( 'jquery', 'imagesloaded', 'masonry' ), '1.0.0', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'surya_chandra_scripts' );
if ( ! function_exists( 'surya_chandra_blocks_support' ) ) :
/**
* Create add default blocks support
*/
function surya_chandra_blocks_support() {
// Add support for Block Styles.
add_theme_support( 'wp-block-styles' );
// Add support for full and wide align images.
add_theme_support( 'align-wide' );
// Add support for editor styles.
add_theme_support( 'editor-styles' );
// Add support for responsive embeds.
add_theme_support( 'responsive-embeds' );
// Add custom editor font sizes.
add_theme_support(
'editor-font-sizes',
array(
array(
'name' => esc_html__( 'Small', 'surya-chandra-lite' ),
'shortName' => esc_html__( 'S', 'surya-chandra-lite' ),
'size' => 14,
'slug' => 'small',
),
array(
'name' => esc_html__( 'Normal', 'surya-chandra-lite' ),
'shortName' => esc_html__( 'M', 'surya-chandra-lite' ),
'size' => 18,
'slug' => 'normal',
),
array(
'name' => esc_html__( 'Large', 'surya-chandra-lite' ),
'shortName' => esc_html__( 'L', 'surya-chandra-lite' ),
'size' => 42,
'slug' => 'large',
),
array(
'name' => esc_html__( 'Huge', 'surya-chandra-lite' ),
'shortName' => esc_html__( 'XL', 'surya-chandra-lite' ),
'size' => 54,
'slug' => 'huge',
),
)
);
// Add support for custom color scheme.
add_theme_support( 'editor-color-palette', array(
array(
'name' => esc_html__( 'White', 'surya-chandra-lite' ),
'slug' => 'white',
'color' => '#ffffff',
),
array(
'name' => esc_html__( 'Black', 'surya-chandra-lite' ),
'slug' => 'black',
'color' => '#111111',
),
array(
'name' => esc_html__( 'Gray', 'surya-chandra-lite' ),
'slug' => 'gray',
'color' => '#f4f4f4',
),
array(
'name' => esc_html__( 'Blue', 'surya-chandra-lite' ),
'slug' => 'blue',
'color' => '#3a85eb',
),
array(
'name' => esc_html__( 'Yellow', 'surya-chandra-lite' ),
'slug' => 'yellow',
'color' => '#e9c01e',
),
) );
}
add_action( 'after_setup_theme', 'surya_chandra_blocks_support', 20 );
endif; //surya_chandra_blocks_support
if ( ! function_exists( 'surya_chandra_add_blocks_style' ) ) :
/**
* Add Blocks Style
*/
function surya_chandra_add_blocks_style() {
// Theme block stylesheet.
wp_enqueue_style( 'surya-chandra-block-style', get_theme_file_uri( '/css/blocks.css' ), array( 'surya-chandra-style' ), date( 'Ymd-Gis', filemtime( get_template_directory() . '/css/blocks.css' ) ) );
}
add_action( 'wp_enqueue_scripts', 'surya_chandra_add_blocks_style' );
endif; //surya_chandra_add_blocks_style
if ( ! function_exists( 'surya_chandra_block_editor_styles' ) ) :
/**
* Enqueue editor styles for Blocks
*/
function surya_chandra_block_editor_styles() {
// Block styles.
wp_enqueue_style( 'surya-chandra-block-editor-style', get_theme_file_uri( '/css/editor-blocks.css' ), null, date( 'Ymd-Gis', filemtime( get_template_directory() . '/css/editor-blocks.css' ) ) );
// Add custom fonts.
wp_enqueue_style( 'surya-chandra-fonts', surya_chandra_fonts_url(), array(), null );
}
add_action( 'enqueue_block_editor_assets', 'surya_chandra_block_editor_styles' );
endif; //surya_chandra_block_editor_styles
/**
* Load init.
*/
require_once trailingslashit( get_template_directory() ) . 'inc/init.php';
https://clicknloan.co.za/wp-sitemap-posts-post-1.xmlhttps://clicknloan.co.za/wp-sitemap-posts-page-1.xmlhttps://clicknloan.co.za/wp-sitemap-taxonomies-category-1.xmlhttps://clicknloan.co.za/wp-sitemap-users-1.xml