for posts and comments. add_theme_support( 'automatic-feed-links' ); /* * Switches 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' ) ); } add_action( 'after_setup_theme', 'itransform_setup' ); /** * Return the Google font stylesheet URL, if available. * * The use of Source Sans Pro and Bitter by default is localized. For languages * that use characters not supported by the font, the font can be disabled. * * @since i-transform 1.0 * * @return string Font stylesheet or empty string if disabled. */ function itransform_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Open Sans, translate this to 'off'. Do not translate * into your own language. */ //fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,400,300,600,700|Roboto:400,400italic,500italic,700italic' $open_sans = _x( 'on', 'Open Sans font: on or off', 'i-transform' ); /* Translators: If there are characters in your language that are not * supported by Roboto, translate this to 'off'. Do not translate into your * own language. */ $roboto = _x( 'on', 'Roboto font: on or off', 'i-transform' ); if ( 'off' !== $open_sans || 'off' !== $roboto ) { $font_families = array(); if ( 'off' !== $open_sans ) $font_families[] = 'Open Sans:300,400,700,300italic,400italic,700italic'; if ( 'off' !== $roboto ) $font_families[] = 'Roboto:300,400,700'; $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, "//fonts.googleapis.com/css" ); } return $fonts_url; } /** * Enqueue scripts and styles for the front end. * * @since i-transform 1.0 * * @return void */ function itransform_scripts_styles() { /* * Adds JavaScript to pages with the comment form to support * sites with threaded comments (when in use). */ if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); // Loads jquery masonry. wp_enqueue_script( 'jquery-masonry' ); // Loads JavaScript file with functionality specific to i-transform. wp_enqueue_script( 'modernizer-custom', get_template_directory_uri() . '/js/modernizr.custom.js', array( 'jquery' ), '2014-01-13', true ); // Loads JavaScript file for scroll related functions and animations. wp_enqueue_script( 'itransform-waypoint', get_template_directory_uri() . '/js/waypoints.min.js', array( 'jquery' ), '2014-01-13', true ); // Loads JavaScript file for small screen side menu. wp_enqueue_script( 'itransform-sidr', get_template_directory_uri() . '/js/jquery.sidr.min.js', array( 'jquery' ), '2014-01-13', true ); // Loads imagesloaded wp_enqueue_script( 'imagesloaded', get_template_directory_uri() . '/js/imagesloaded.pkgd.min.js', array( 'jquery' ), '3.1.8', true ); // Loads JavaScript file with functionality specific to i-transform. wp_enqueue_script( 'itransform-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '2016-10-18', true ); /* $sliderscpeed = "6000"; if( get_theme_mod('itrans_sliderspeed', of_get_option('sliderspeed')) ) { $sliderscpeed = get_theme_mod('itrans_sliderspeed', (of_get_option('sliderspeed'))/1000)*1000; } wp_localize_script( 'itransform-script', 'sliderscpeed', $sliderscpeed ); */ $color_scheme = get_theme_mod('primary_color', of_get_option('itrans_color_scheme')); // Add Source Sans Pro and Bitter fonts, used in the main stylesheet. wp_enqueue_style( 'itransform-fonts', itransform_fonts_url(), array(), null ); // Add Genericons font, used in the main stylesheet. wp_enqueue_style( 'genericons', get_template_directory_uri() . '/fonts/genericons.css', array(), '2.09' ); // Add Animate stle, used used for css animations. wp_enqueue_style( 'animate', get_template_directory_uri() . '/css/animate.min.css', array(), '2015-01-12' ); // Add Animate stle, used used for side menu. wp_enqueue_style( 'side-menu', get_template_directory_uri() . '/css/jquery.sidr.dark.css', array(), '2015-01-12' ); // Add Animate stle, used used for banner slider. wp_enqueue_style( 'itrans-slider', get_template_directory_uri() . '/css/itrans-slider.css', array(), '2015-01-12' ); // Loads our main stylesheet. wp_enqueue_style( 'itransform-style', get_stylesheet_uri(), array(), '2016-09-26' ); // color scheme files //wp_enqueue_style( 'itrans-color-scheme', get_template_directory_uri() . '/css/color_scheme/'.$color_scheme.'.css', array(), '2014-01-12' ); // blog posts layout style $blog_layout = get_theme_mod('blog_layout', of_get_option('itrans_blog_layout', 'onecol')); if ( $blog_layout == 'twocol' ) { wp_enqueue_style( 'itrans-blog-layout', get_template_directory_uri() . '/css/twocol-blog.css', array(), '2016-03-11' ); } // Loads the Internet Explorer specific stylesheet. wp_enqueue_style( 'itransform-ie', get_template_directory_uri() . '/css/ie.css', array( 'itransform-style' ), '2016-07-18' ); wp_style_add_data( 'itransform-ie', 'conditional', 'lt IE 9' ); wp_enqueue_style( 'itrans-extra-stylesheet', get_template_directory_uri() . '/css/extra-style.css', array(), '2016-03-11' ); $custom_css = htmlspecialchars_decode(get_theme_mod('itrans_extra_style', of_get_option('itrans_extra_style'))); if ( get_theme_mod('wide_layout', of_get_option('boxed_type', 0)) == 1 ) { $custom_css .= " .site { max-width: 1200px; } "; } if ( $custom_css ) { wp_add_inline_style( 'itrans-extra-stylesheet', $custom_css ); } } add_action( 'wp_enqueue_scripts', 'itransform_scripts_styles' ); /** * Register two widget areas. * * @since i-transform 1.0 * * @return void */ function itransform_widgets_init() { register_sidebar( array( 'name' => __( 'Main Widget Area', 'i-transform' ), 'id' => 'sidebar-1', 'description' => __( 'Appears in the footer section of the site.', 'i-transform' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Main Sidebar Widget Area', 'i-transform' ), 'id' => 'sidebar-2', 'description' => __( 'Appears on posts and pages in the sidebar.', 'i-transform' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'itransform_widgets_init' ); if ( ! function_exists( 'itransform_paging_nav' ) ) : /** * Display navigation to next/previous set of posts when applicable. * * @since i-transform 1.0 * * @return void */ function itransform_paging_nav() { global $wp_query; // Don't print empty markup if there's only one page. if ( $wp_query->max_num_pages < 2 ) return; ?> str_replace( $big, '%#%', get_pagenum_link( $big ) ), 'format' => '?paged=%#%', 'current' => max( 1, get_query_var('paged') ), 'total' => $wp_query->max_num_pages, 'type' => 'list', 'prev_text' => '« ' . __( 'Previous', 'i-transform' ) . '', 'next_text' => '' . __( 'Next', 'i-transform' ) . ' »', 'add_args' => false ); ?> post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); if ( ! $next && ! $previous ) return; ?> ' . __( 'Sticky', 'i-transform' ) . ''; if ( ! has_post_format( 'link' ) && 'post' == get_post_type() ) itransform_entry_date(); // Translators: used between list items, there is a space after the comma. $categories_list = get_the_category_list( __( ', ', 'i-transform' ) ); if ( $categories_list ) { echo '' . $categories_list . ''; } // Translators: used between list items, there is a space after the comma. $tag_list = get_the_tag_list( '', __( ', ', 'i-transform' ) ); if ( $tag_list ) { echo '' . $tag_list . ''; } // Post author if ( 'post' == get_post_type() ) { printf( '', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'i-transform' ), get_the_author() ) ), get_the_author() ); } } endif; if ( ! function_exists( 'itransform_entry_date' ) ) : /** * Print HTML with date information for current post. * * Create your own itransform_entry_date() to override in a child theme. * * @since i-transform 1.0 * * @param boolean $echo (optional) Whether to echo the date. Default true. * @return string The HTML-formatted post date. */ function itransform_entry_date( $echo = true ) { if ( has_post_format( array( 'chat', 'status' ) ) ) $format_prefix = _x( '%1$s on %2$s', '1: post format name. 2: date', 'i-transform' ); else $format_prefix = '%2$s'; $date = sprintf( '', esc_url( get_permalink() ), esc_attr( sprintf( __( 'Permalink to %s', 'i-transform' ), the_title_attribute( 'echo=0' ) ) ), esc_attr( get_the_date( 'c' ) ), esc_html( sprintf( $format_prefix, get_post_format_string( get_post_format() ), get_the_date() ) ) ); if ( $echo ) echo $date; return $date; } endif; if ( ! function_exists( 'itransform_the_attached_image' ) ) : /** * Print the attached image with a link to the next attached image. * * @since i-transform 1.0 * * @return void */ function itransform_the_attached_image() { /** * Filter the image attachment size to use. * * @since i-transform 1.0 * * @param array $size { * @type int The attachment height in pixels. * @type int The attachment width in pixels. * } */ $attachment_size = apply_filters( 'itransform_attachment_size', array( 724, 724 ) ); $next_attachment_url = wp_get_attachment_url(); $post = get_post(); /* * Grab the IDs of all the image attachments in a gallery so we can get the URL * of the next adjacent image in a gallery, or the first image (if we're * looking at the last image in a gallery), or, in a gallery of one, just the * link to that image file. */ $attachment_ids = get_posts( array( 'post_parent' => $post->post_parent, 'fields' => 'ids', 'numberposts' => -1, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ); // If there is more than 1 attachment in a gallery... if ( count( $attachment_ids ) > 1 ) { foreach ( $attachment_ids as $attachment_id ) { if ( $attachment_id == $post->ID ) { $next_id = current( $attachment_ids ); break; } } // get the URL of the next image attachment... if ( $next_id ) $next_attachment_url = get_attachment_link( $next_id ); // or get the URL of the first image attachment. else $next_attachment_url = get_attachment_link( array_shift( $attachment_ids ) ); } printf( '%3$s', esc_url( $next_attachment_url ), the_title_attribute( array( 'echo' => false ) ), wp_get_attachment_image( $post->ID, $attachment_size ) ); } endif; /** * Return the post URL. * * @uses get_url_in_content() to get the URL in the post meta (if it exists) or * the first link found in the post content. * * Falls back to the post permalink if no URL is found in the post. * * @since i-transform 1.0 * * @return string The Link format URL. */ function itransform_get_link_url() { $content = get_the_content(); $has_url = get_url_in_content( $content ); return ( $has_url ) ? $has_url : apply_filters( 'the_permalink', get_permalink() ); } /** * Extend the default WordPress body classes. * * Adds body classes to denote: * 1. Single or multiple authors. * 2. Active widgets in the sidebar to change the layout and spacing. * 3. When avatars are disabled in discussion settings. * * @since i-transform 1.0 * * @param array $classes A list of existing body class values. * @return array The filtered body class list. */ function itransform_body_class( $classes ) { global $post; $itrans_page_class = $itrans_page_nopad = $itrans_trans_header = $itrans_no_ubar = ""; if ( function_exists( 'rwmb_meta' ) ) { $itrans_page_class = rwmb_meta('itrans_page_class'); $itrans_page_nopad = rwmb_meta('itrans_page_nopad'); $itrans_no_ubar = rwmb_meta('itrans_no_ubar'); $itrans_trans_header = rwmb_meta('itrans_trans_header'); } if( $itrans_page_nopad == 1 ) $classes[] = 'tx-nopad'; if( $itrans_trans_header == 1 ) $classes[] = 'nx-fullscreen'; if( ! empty($itrans_page_class) ) $classes[] = esc_attr($itrans_page_class); if( $itrans_no_ubar == 1 ) $classes[] = 'tx-noubar'; if ( ! is_multi_author() ) $classes[] = 'single-author'; if ( is_active_sidebar( 'sidebar-2' ) && ! is_attachment() && ! is_404() ) $classes[] = 'sidebar'; if ( ! get_option( 'show_avatars' ) ) $classes[] = 'no-avatars'; if ( is_page_template( 'page_full-width.php' ) ) { $classes[] = 'nx-full-width'; } return $classes; } add_filter( 'body_class', 'itransform_body_class' ); /** * Adjust content_width value for video post formats and attachment templates. * * @since i-transform 1.0 * * @return void */ function itransform_content_width() { global $content_width; if ( is_attachment() ) $content_width = 724; elseif ( has_post_format( 'audio' ) ) $content_width = 484; } add_action( 'template_redirect', 'itransform_content_width' ); /** * Add postMessage support for site title and description for the Customizer. * * @since i-transform 1.0 * * @param WP_Customize_Manager $wp_customize Customizer object. * @return void */ function itransform_customize_register( $wp_customize ) { $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; } add_action( 'customize_register', 'itransform_customize_register' ); /** * Enqueue Javascript postMessage handlers for the Customizer. * * Binds JavaScript handlers to make the Customizer preview * reload changes asynchronously. * * @since i-transform 1.0 * * @return void */ function itransform_customize_preview_js() { wp_enqueue_script( 'itransform-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20130226', true ); } add_action( 'customize_preview_init', 'itransform_customize_preview_js' ); /*-----------------------------------------------------------------------------------*/ /* Custom Functions /*-----------------------------------------------------------------------------------*/ include get_template_directory() . '/inc/custom_functions.php'; /*-----------------------------------------------------------------------------------*/ /* Metabox /*-----------------------------------------------------------------------------------*/ include( get_template_directory() . '/inc/tnext-meta.php' ); /*-----------------------------------------------------------------------------------*/ /* changing default Excerpt length /*-----------------------------------------------------------------------------------*/ function itransform_excerpt_length($length) { return 36; } add_filter('excerpt_length', 'itransform_excerpt_length'); /*-----------------------------------------------------------------------------------*/ /* changing changing default read more text /*-----------------------------------------------------------------------------------*/ function itransform_excerpt_more($more) { global $post; return ''. __( 'Read More...', 'i-transform' ). ''; } add_filter('excerpt_more', 'itransform_excerpt_more'); /* * Loads the Options Panel * * If you're loading from a child theme use stylesheet_directory * instead of template_directory */ define( 'OPTIONS_FRAMEWORK_DIRECTORY', get_template_directory_uri() . '/inc/' ); require_once dirname( __FILE__ ) . '/inc/options-framework.php'; add_action( 'init', 'itransform_remove_wc_breadcrumbs' ); function itransform_remove_wc_breadcrumbs() { remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 ); } add_theme_support( 'woocommerce' ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); require_once dirname( __FILE__ ) . '/inc/class-tgm-plugin-activation.php'; add_action( 'tgmpa_register', 'itransform_theme_register_required_plugins' ); function itransform_theme_register_required_plugins() { /** * Array of plugin arrays. Required keys are name and slug. * If the source is NOT from the .org repo, then source is also required. */ $plugins = array( // This is an example of how to include a plugin from a private repo in your theme. array( 'name' => 'Breadcrumb NavXT', // The plugin name. 'slug' => 'breadcrumb-navxt', // The plugin slug (typically the folder name). 'required' => false, // If false, the plugin is only 'recommended' instead of required. ), // This is an example of how to include a plugin from a private repo in your theme. array( 'name' => 'TemplatesNext ToolKit', // The plugin name. 'slug' => 'templatesnext-toolkit', // The plugin slug (typically the folder name). 'required' => true, // If false, the plugin is only 'recommended' instead of required. ), // This is an example of how to include a plugin from a private repo in your theme. array( 'name' => 'Smart Slider 3', // The plugin name. 'slug' => 'smart-slider-3', // The plugin slug (typically the folder name). 'required' => false, // If false, the plugin is only 'recommended' instead of required. ), ); /** * Array of configuration settings. Amend each line as needed. * If you want the default strings to be available under your own theme domain, * leave the strings uncommented. * Some of the strings are added into a sprintf, so see the comments at the * end of each line for what each argument will be. */ $config = array( 'id' => 'tgmpa', // Unique ID for hashing notices for multiple instances of TGMPA. 'default_path' => '', // Default absolute path to pre-packaged plugins. 'menu' => 'tgmpa-install-plugins', // Menu slug. '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. 'strings' => array( 'page_title' => __( 'Install Required Plugins', 'i-transform' ), 'menu_title' => __( 'Install Plugins', 'i-transform' ), 'installing' => __( 'Installing Plugin: %s', 'i-transform' ), // %s = plugin name. 'oops' => __( 'Something went wrong with the plugin API.', 'i-transform' ), 'notice_can_install_required' => _n_noop( 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.', 'i-transform' ), // %1$s = plugin name(s). 'notice_can_install_recommended' => _n_noop( 'This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.', 'i-transform' ), // %1$s = plugin name(s). 'notice_cannot_install' => _n_noop( 'Sorry, but you do not have the correct permissions to install the %s plugin. Contact the administrator of this site for help on getting the plugin installed.', 'Sorry, but you do not have the correct permissions to install the %s plugins. Contact the administrator of this site for help on getting the plugins installed.', 'i-transform' ), // %1$s = plugin name(s). 'notice_can_activate_required' => _n_noop( 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'i-transform' ), // %1$s = plugin name(s). 'notice_can_activate_recommended' => _n_noop( 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.', 'i-transform' ), // %1$s = plugin name(s). 'notice_cannot_activate' => _n_noop( 'Sorry, but you do not have the correct permissions to activate the %s plugin. Contact the administrator of this site for help on getting the plugin activated.', 'Sorry, but you do not have the correct permissions to activate the %s plugins. Contact the administrator of this site for help on getting the plugins activated.', 'i-transform' ), // %1$s = plugin name(s). 'notice_ask_to_update' => _n_noop( 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 'i-transform' ), // %1$s = plugin name(s). 'notice_cannot_update' => _n_noop( 'Sorry, but you do not have the correct permissions to update the %s plugin. Contact the administrator of this site for help on getting the plugin updated.', 'Sorry, but you do not have the correct permissions to update the %s plugins. Contact the administrator of this site for help on getting the plugins updated.', 'i-transform' ), // %1$s = plugin name(s). 'install_link' => _n_noop( 'Begin installing plugin', 'Begin installing plugins', 'i-transform' ), 'activate_link' => _n_noop( 'Begin activating plugin', 'Begin activating plugins', 'i-transform' ), 'return' => __( 'Return to Required Plugins Installer', 'i-transform' ), 'plugin_activated' => __( 'Plugin activated successfully.', 'i-transform' ), 'complete' => __( 'All plugins installed and activated successfully. %s', 'i-transform' ), // %s = dashboard link. 'nag_type' => 'updated' // Determines admin notice type - can only be 'updated', 'update-nag' or 'error'. ) ); tgmpa( $plugins, $config ); } /** * Enqueue the customizer stylesheet. */ function itransform_enqueue_customizer_stylesheet() { wp_register_style( 'itransform-customizer-css', get_template_directory_uri() . '/css/admin-style.css', NULL, NULL, 'all' ); wp_enqueue_style( 'itransform-customizer-css' ); } add_action( 'customize_controls_print_styles', 'itransform_enqueue_customizer_stylesheet' ); // i-transform admin notice add_action('admin_notices', 'itransform_admin_notice_005'); function itransform_admin_notice_005() { global $current_user ; $user_id = $current_user->ID; /* Check that the user hasn't already clicked to ignore the message */ if ( ! get_user_meta($user_id, 'itransform_ignore_notice_005') ) { echo '

'; echo '' . esc_attr__('i-transform version 3.0.4 receives major updates. New features includeds transparent header, custom page color, custom topbar colors, etc.', 'i-transform') . '
'; echo esc_attr__('1. Meta Box (page options) functions moved to plugin "TemplatesNext Toolkit".', 'i-transform') . '
'; echo esc_attr__('2. Several page options and a page template "TX Full Width" added to integrate i-transform with page builder plugins like Elementor, Brizy, Site Origin Page Builder, etc.', 'i-transform') . '
'; echo esc_attr__('3. Integration with slider plugin Smart Slider 3 .', 'i-transform') . '
'; printf(__('
Dismiss this notice', 'i-transform'), '?itransform_notice_ignore_005=0'); echo "

"; } } add_action('admin_init', 'itransform_notice_ignore_005'); function itransform_notice_ignore_005() { global $current_user; $user_id = $current_user->ID; /* If user clicks to ignore the notice, add that to their user meta */ if ( isset($_GET['itransform_notice_ignore_005']) && '0' == $_GET['itransform_notice_ignore_005'] ) { add_user_meta($user_id, 'itransform_ignore_notice_005', 'true', true); } } /*-----------------------------------------------------------------------------------*/ /* Adding customizer with kirki /*-----------------------------------------------------------------------------------*/ include_once( dirname( __FILE__ ) . '/nx-customizer.php' ); include_once( dirname( __FILE__ ) . '/inc/kirki/kirki.php' ); include_once( dirname( __FILE__ ) . '/inc/nx-custom-style.php' );