/** * SKT Construction functions and definitions * * @package SKT Construction */ // Set the word limit of post content function skt_construction_content($limit) { $content = explode(' ', get_the_content(), $limit); if (count($content)>=$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_construction_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_construction_setup() { if ( ! isset( $content_width ) ) $content_width = 640; /* pixels */ load_theme_textdomain( 'skt-construction', 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_image_size('skt-construction-homepage-thumb',240,145,true); register_nav_menus( array( 'primary' => __( 'Primary Menu', 'skt-construction' ), ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); add_editor_style( 'editor-style.css' ); } endif; // skt_construction_setup add_action( 'after_setup_theme', 'skt_construction_setup' ); function skt_construction_widgets_init() { register_sidebar( array( 'name' => __( 'Blog Sidebar', 'skt-construction' ), 'description' => __( 'Appears on blog page sidebar', 'skt-construction' ), 'id' => 'sidebar-1', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Header Sidebar', 'skt-construction' ), 'description' => __( 'Appears on site of header', 'skt-construction' ), 'id' => 'sidebar-header', 'before_widget' => '
', 'before_title' => '

', 'after_title' => '

', 'after_widget' => '
', ) ); } add_action( 'widgets_init', 'skt_construction_widgets_init' ); /* * Use this function for Sets up theme defaults blog sidebar. */ function skt_construction_font_url(){ $font_url = ''; /* Translators: If there are any character that are not * supported by Oswald, trsnalate this to off, do not * translate into your own language. */ $roboto = _x('on','roboto:on or off','skt-construction'); /* 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-construction'); /* 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-construction'); if('off' !== $roboto || 'off' !== $arimo){ $font_family = array(); if('off' !== $roboto){ $font_family[] = 'Roboto:300,400,600,700,800,900'; } if('off' !== $arimo){ $font_family[] = 'Arimo:400,700'; } $query_args = array( 'family' => urlencode(implode('|',$font_family)), ); $font_url = add_query_arg($query_args,'//fonts.googleapis.com/css'); } return $font_url; } function skt_construction_scripts() { wp_enqueue_style('skt-construction-font', skt_construction_font_url(), array()); wp_enqueue_style( 'skt-construction-basic-style', get_stylesheet_uri() ); wp_enqueue_style( 'skt-construction-editor-style', get_template_directory_uri()."/editor-style.css" ); wp_enqueue_style( 'skt-construction-nivoslider-style', get_template_directory_uri()."/css/nivo-slider.css" ); wp_enqueue_style( 'skt-construction-main-style', get_template_directory_uri()."/css/responsive.css" ); wp_enqueue_style( 'skt-construction-base-style', get_template_directory_uri()."/css/style_base.css" ); wp_enqueue_script( 'skt-construction-nivo-script', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') ); wp_enqueue_script( 'skt-construction-custom_js', get_template_directory_uri() . '/js/custom.js' ); wp_enqueue_style( 'skt-construction-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_construction_scripts' ); function skt_construction_ie_stylesheet(){ global $wp_styles; /** Load our IE-only stylesheet for all versions of IE. * * * Note: It is also possible to just check and see if the $is_IE global in WordPress is set to true before * calling the wp_enqueue_style() function. If you are trying to load a stylesheet for all browsers * EXCEPT for IE, then you would HAVE to check the $is_IE global since WordPress doesn't have a way to * properly handle non-IE conditional comments. */ wp_enqueue_style('skt-construction-ie', get_template_directory_uri().'/css/ie.css', array('skt-construction-style')); $wp_styles->add_data('skt-construction-ie','conditional','IE'); } add_action('wp_enqueue_scripts','skt_construction_ie_stylesheet'); function skt_construction_pagination() { /*Set this function for pagination links*/ global $wp_query; $big = 12345678; $page_format = paginate_links( array( 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), 'format' => '?paged=%#%', 'current' => max( 1, get_query_var('paged') ), 'total' => $wp_query->max_num_pages, 'type' => 'array' ) ); if( is_array($page_format) ) { $paged = ( get_query_var('paged') == 0 ) ? 1 : get_query_var('paged'); echo ''; } } define('SKT_URL','http://www.sktthemes.net'); define('SKT_THEME_URL','http://www.sktthemes.net/themes'); define('SKT_THEME_URL_DIRECT','http://www.sktthemes.net/shop/responsive-construction-wordpress-theme/'); define('SKT_THEME_DOC','http://sktthemesdemo.net/documentation/skt-construction-doc/'); define('SKT_PRO_THEME_URL','http://www.sktthemes.net/shop/responsive-construction-wordpress-theme/'); define('SKT_PRO_FONT_AWESOME_URL','http://fortawesome.github.io/Font-Awesome/icons/'); function skt_construction_credit(){ return "© 2015 SKT Construction. All Rights Reserved"; } function skt_construction_themebytext(){ return "Theme by SKT Themes"; } /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.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'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; // get slug by id function skt_construction_get_slug_by_id($id) { $post_data = get_post($id, ARRAY_A); $slug = $post_data['post_name']; return $slug; } add_filter( 'woocommerce_is_purchasable', '__return_false');