=$limit) { array_pop($content); $content = implode(" ",$content).'...'; } else { $content = implode(" ",$content); } $content = preg_replace('/\[.+\]/','', $content); $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); return $content; } /** * Set the content width based on the theme's design and stylesheet. */ if ( ! function_exists( 'skt_girlie_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 post thumbnails. */ function skt_girlie_setup() { load_theme_textdomain( 'skt-girlie-lite', get_template_directory() . '/languages' ); add_theme_support( 'automatic-feed-links' ); add_theme_support('woocommerce'); add_theme_support( 'post-thumbnails' ); add_theme_support( 'custom-header' ); add_theme_support( 'title-tag' ); add_theme_support( 'custom-logo', array( 'height' => 240, 'width' => 240, 'flex-height' => true, ) ); add_theme_support( 'custom-header', array( 'header-text' => false ) ); add_image_size('skt-girlie-lite-homepage-thumb',240,145,true); register_nav_menus( array( 'primary' => __( 'Primary Menu', 'skt-girlie-lite' ), ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); add_editor_style( 'editor-style.css' ); } endif; // skt_girlie_setup add_action( 'after_setup_theme', 'skt_girlie_setup' ); function skt_girlie_widgets_init() { register_sidebar( array( 'name' => __( 'Blog Sidebar', 'skt-girlie-lite' ), 'description' => __( 'Appears on blog page sidebar', 'skt-girlie-lite' ), 'id' => 'sidebar-1', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'skt_girlie_widgets_init' ); /* * Use this function for Sets up theme defaults blog sidebar. */ function skt_girlie_font_url(){ $font_url = ''; /* Translators: If there are any character that are not * supported by Roboto, trsnalate this to off, do not * translate into your own language. */ $pacifico = _x('on','pacifico:on or off','skt-girlie-lite'); /* Translators: If there are any character that are not * supported by Pacifico, trsnalate this to off, do not * translate into your own language. */ $roboto = _x('on','roboto:on or off','skt-girlie-lite'); /* Translators: If there has any character that are not supported * by Arimo, translate this to off, do not translate * into your own language. */ $arimo = _x('on','arimo:on or off','skt-girlie-lite'); /* Translators: If there has any character that are not supported * by Scada, translate this to off, do not translate * into your own language. */ $scada = _x('on','Scada:on or off','skt-girlie-lite'); if('off' !== $roboto || 'off' !== $arimo || 'off' !== $pacifico){ $font_family = array(); if('off' !== $roboto){ $font_family[] = 'Roboto:300,400,600,700,800,900'; } if('off' !== $arimo){ $font_family[] = 'Arimo:400'; } if('off' !== $pacifico){ $font_family[] = 'Pacifico:400'; } $query_args = array( 'family' => urlencode(implode('|',$font_family)), ); $font_url = add_query_arg($query_args,'//fonts.googleapis.com/css'); } return $font_url; } function skt_girlie_scripts() { wp_enqueue_style('skt-girlie-lite-font', skt_girlie_font_url(), array()); wp_enqueue_style( 'skt-girlie-lite-basic-style', get_stylesheet_uri() ); wp_enqueue_style( 'skt-girlie-lite-editor-style', get_template_directory_uri()."/editor-style.css" ); wp_enqueue_style( 'skt-girlie-lite-nivoslider-style', get_template_directory_uri()."/css/nivo-slider.css" ); wp_enqueue_style( 'skt-girlie-lite-main-style', get_template_directory_uri()."/css/responsive.css" ); wp_enqueue_style( 'skt-girlie-lite-base-style', get_template_directory_uri()."/css/style_base.css" ); wp_enqueue_script( 'skt-girlie-lite-nivo-script', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') ); wp_enqueue_script( 'skt-girlie-lite-custom_js', get_template_directory_uri() . '/js/custom.js' ); wp_enqueue_style( 'skt-girlie-lite-animation-style', get_template_directory_uri()."/css/animation.css" ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'skt_girlie_scripts' ); define('SKT_URL','https://www.sktthemes.org'); define('SKT_THEME_URL','https://www.sktthemes.org/themes'); define('SKT_THEME_URL_DIRECT','https://www.sktthemes.org/shop/girlie-girly-wordpress-theme/'); define('SKT_THEME_DOC','http://sktthemesdemo.net/documentation/skt-girlie-lite-doc/'); define('SKT_PRO_THEME_URL','https://www.sktthemes.org/shop/girlie-girly-wordpress-theme/'); define('SKT_PRO_FONT_AWESOME_URL','http://fortawesome.github.io/Font-Awesome/icons/'); define('SKT_THEME_FEATURED_SET_VIDEO_URL','https://www.youtube.com/watch?v=310YGYtGLIM'); define('SKT_LIVE_DEMO','http://sktthemesdemo.net/girlie/'); define('SKT_FREE_URL','https://www.sktthemes.org/shop/girlie-lite/'); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * 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_girlie_get_slug_by_id($id) { $post_data = get_post($id, ARRAY_A); $slug = $post_data['post_name']; return $slug; } if ( ! function_exists( 'skt_girlie_the_custom_logo' ) ) : /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. * */ function skt_girlie_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; // WordPress wp_body_open backward compatibility if ( ! function_exists( 'wp_body_open' ) ) { function wp_body_open() { do_action( 'wp_body_open' ); } } /** * Include the Plugin_Activation class. */ require_once dirname( __FILE__ ) . '/class-tgm-plugin-activation.php'; add_action( 'tgmpa_register', 'skt_girlie_register_required_plugins' ); function skt_girlie_register_required_plugins() { $plugins = array( array( 'name' => '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 ); }