43, 'width' => 150, 'flex-height' => true, ) ); register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'skt-coach' ) ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); add_editor_style( 'editor-style.css' ); } endif; // skt_coach_setup add_action( 'after_setup_theme', 'skt_coach_setup' ); function skt_coach_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'skt-coach' ), 'description' => esc_html__( 'Appears on sidebar', 'skt-coach' ), 'id' => 'sidebar-1', 'before_widget' => '', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer', 'skt-coach' ), 'description' => esc_html__( 'Appears on page footer', 'skt-coach' ), 'id' => 'fc-1', 'before_widget' => '', ) ); } add_action( 'widgets_init', 'skt_coach_widgets_init' ); /** * Enqueue theme fonts. */ function skt_coach_fonts() { $fonts_url = skt_coach_get_fonts_url(); // Load Fonts if necessary. if ( $fonts_url ) { require_once get_theme_file_path( 'inc/wptt-webfont-loader.php' ); wp_enqueue_style( 'skt-coach-fonts', wptt_get_webfont_url( $fonts_url ), array(), '20201110' ); } } add_action( 'wp_enqueue_scripts', 'skt_coach_fonts', 1 ); add_action( 'enqueue_block_editor_assets', 'skt_coach_fonts', 1 ); /** * Retrieve webfont URL to load fonts locally. */ function skt_coach_get_fonts_url() { $font_families = array( 'Poppins:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic', 'Playfair Display:400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic', 'Assistant:200,300,400,500,600,700,800', ); $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), 'display' => urlencode( 'swap' ), ); return apply_filters( 'skt_coach_get_fonts_url', add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ) ); } function skt_coach_scripts() { if ( !is_rtl() ) { wp_enqueue_style( 'skt-coach-basic-style', get_stylesheet_uri() ); wp_enqueue_style( 'skt-coach-main-style', get_template_directory_uri()."/css/responsive.css" ); } if ( is_rtl() ) { wp_enqueue_style( 'skt-coach-rtl', get_template_directory_uri() . "/rtl.css"); } wp_enqueue_style( 'skt-coach-editor-style', get_template_directory_uri()."/editor-style.css" ); wp_enqueue_style( 'skt-coach-base-style', get_template_directory_uri()."/css/style_base.css" ); wp_enqueue_script( 'skt-coach-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '01062020', true ); wp_enqueue_script( 'skt-coach-customscripts', get_stylesheet_directory_uri() . '/js/custom.js', array('jquery') ); wp_localize_script( 'skt-coach-navigation', 'sktcoachScreenReaderText', array( 'expandMain' => __( 'Open main menu', 'skt-coach' ), 'collapseMain' => __( 'Close main menu', 'skt-coach' ), 'expandChild' => __( 'Expand submenu', 'skt-coach' ), 'collapseChild' => __( 'Collapse submenu', 'skt-coach' ), ) ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'skt_coach_scripts' ); function skt_coach_admin_style() { wp_enqueue_style('skt-coach-admin-style', get_template_directory_uri()."/css/skt-coach-admin-style.css"); } add_action('admin_enqueue_scripts', 'skt_coach_admin_style'); define('SKT_COACH_SKTTHEMES_URL','https://www.sktthemes.org'); define('SKT_COACH_SKTTHEMES_PRO_THEME_URL','https://www.sktthemes.org/shop/public-speaker-wordpress-theme/'); define('SKT_COACH_SKTTHEMES_FREE_THEME_URL','https://www.sktthemes.org/shop/free-speaker-wordpress-theme/'); define('SKT_COACH_SKTTHEMES_THEME_DOC','https://www.sktthemesdemo.net/documentation/skt-coach-doc/'); define('SKT_COACH_SKTTHEMES_LIVE_DEMO','https://sktperfectdemo.com/themepack/coachpress/'); define('SKT_COACH_SKTTHEMES_THEMES','https://www.sktthemes.org/themes'); define('SKT_COACH_SKTTHEMES_THEME_URI', trailingslashit( esc_url( get_template_directory_uri() ) ) ); /** * Custom template for about theme. */ require get_template_directory() . '/inc/about-themes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; // get slug by id function skt_coach_get_slug_by_id($id) { $post_data = get_post($id, ARRAY_A); $slug = $post_data['post_name']; return $slug; } if ( ! function_exists( 'skt_coach_the_custom_logo' ) ) : /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. * */ function skt_coach_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; require_once get_template_directory() . '/customize-pro/example-1/class-customize.php'; /** * Filter the except length to 21 words. * * @param int $length Excerpt length. * @return int (Maybe) modified excerpt length. */ function skt_coach_custom_excerpt_length( $length ) { if ( is_admin() ) return $length; return 25; } add_filter( 'excerpt_length', 'skt_coach_custom_excerpt_length', 999 ); /** * * Style For About Theme Page * */ function skt_coach_admin_about_page_css_enqueue($hook) { if ( 'appearance_page_skt_coach_guide' != $hook ) { return; } wp_enqueue_style( 'skt-coach-about-page-style', get_template_directory_uri() . '/css/skt-coach-about-page-style.css' ); } add_action( 'admin_enqueue_scripts', 'skt_coach_admin_about_page_css_enqueue' ); /** * Show notice on theme activation */ if ( is_admin() && isset($_GET['activated'] ) && $pagenow == "themes.php" ) { add_action( 'admin_notices', 'skt_coach_activation_notice' ); } function skt_coach_activation_notice(){ ?>
<?php echo esc_attr('SKT Templates');?>

'SKT Templates', 'slug' => 'skt-templates', 'required' => false, ) ); $config = array( 'id' => 'tgmpa', // Unique ID for hashing notices for multiple instances of TGMPA. 'default_path' => '', // Default absolute path to bundled plugins. 'menu' => 'skt-install-plugins', // Menu slug. 'parent_slug' => 'themes.php', // Parent menu slug. 'capability' => 'edit_theme_options', // Capability needed to view plugin install page, should be a capability associated with the parent menu used. 'has_notices' => true, // Show admin notices or not. 'dismissable' => true, // If false, a user cannot dismiss the nag message. 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 'is_automatic' => false, // Automatically activate plugins after installation or not. 'message' => '', // Message to output right before the plugins table. ); tgmpa( $plugins, $config ); }