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' ) ); // This theme uses wp_nav_menu() in one location. register_nav_menu( 'primary', __( 'Navigation Menu', 'i-design' ) ); // add title tag support since WordPress 4.1 add_theme_support( 'title-tag' ); /* * This theme uses a custom image size for featured images, displayed on * "standard" posts and pages. */ add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 604, 270, true ); /* * additional Image sizes. */ //add_image_size( 'idesign-slider-thumb', 1920, 1080, true ); //(cropped) add_image_size( 'idesign-slider-thumb', 1280, 720, true ); //(cropped) add_image_size( 'idesign-single-thumb', 1200, 480, true ); //(cropped) // Add Support for woocommerce 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' ); $idesign_defaults_bg = array( 'default-color' => '#f3f1ed', 'default-image' => get_template_directory_uri() . '/images/default-bg.png', 'default-repeat' => 'repeat-all' ); add_theme_support( 'custom-background', $idesign_defaults_bg ); // This theme uses its own gallery styles. add_filter( 'use_default_gallery_style', '__return_false' ); // Add theme logo // add_theme_support( 'custom-logo', array( 'height' => 64, 'width' => 280, 'flex-height' => true, 'flex-width' => true, 'header-text' => array( 'site-title', 'site-description' ), ) ); add_theme_support( 'customize-selective-refresh-widgets' ); $idesign_defaults_header = array( 'default-image' => get_template_directory_uri() . '/images/bg/bg7.jpg', 'flex-width' => true, 'flex-height' => true, 'video' => true, ); add_theme_support( 'custom-header', $idesign_defaults_header ); } add_action( 'after_setup_theme', 'idesign_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-design 1.0 * * @return string Font stylesheet or empty string if disabled. */ function idesign_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-design' ); /* 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-design' ); 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-design 1.0 * * @return void */ function idesign_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' ); // load masonry for footer and post layout wp_enqueue_script( 'jquery-masonry' ); // Loads JavaScript file for scroll related functions and animations. wp_enqueue_script( 'idesign-waypoint', get_template_directory_uri() . '/js/waypoints.min.js', array( 'jquery' ), '2014-01-13', true ); // Loads JavaScript file for jquery carousel wp_enqueue_script( 'owl-carousel', get_template_directory_uri() . '/js/owl.carousel.min.js', array( 'jquery' ), '2014-01-13', true ); // Loads JavaScript file for inview wp_enqueue_script( 'inview', get_template_directory_uri() . '/js/jquery.inview.min.js', array( 'jquery' ), '1.1.2', true ); // Loads JavaScript file with functionality specific to i-design. wp_enqueue_script( 'idesign-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '1.1.1', true ); $blog_layout = get_theme_mod('blog_layout', '2'); // Add Source Sans Pro and Bitter fonts, used in the main stylesheet. wp_enqueue_style( 'idesign-fonts', idesign_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(), '2014-01-12' ); // Add owl-carusel style wp_enqueue_style( 'owl-carousel', get_template_directory_uri() . '/css/owl.carousel.css', array(), '2014-01-12' ); // Add owl-carusel theme wp_enqueue_style( 'owl-carousel-theme', get_template_directory_uri() . '/css/owl.theme.css', array(), '2014-01-12' ); // Add owl-carusel transition wp_enqueue_style( 'owl-carousel-transitions', get_template_directory_uri() . '/css/owl.transitions.css', array(), '2016-01-12' ); // Loads our main stylesheet. wp_enqueue_style( 'idesign-style', get_stylesheet_uri(), array(), '1.1.1' ); // blog posts layout style if ( $blog_layout == '2' ) { wp_enqueue_style( 'i-design-blog-layout', get_template_directory_uri() . '/css/twocol-blog.css', array(), '2016-03-11' ); } } add_action( 'wp_enqueue_scripts', 'idesign_scripts_styles' ); /** * Register two widget areas. * * @since i-design 1.0 * * @return void */ function idesign_widgets_init() { register_sidebar( array( 'name' => __( 'Main Widget Area', 'i-design' ), 'id' => 'sidebar-1', 'description' => __( 'Appears in the footer section of the site.', 'i-design' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

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

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'idesign_widgets_init' ); if ( ! function_exists( 'idesign_post_nav' ) ) : /** * Display navigation to next/previous post when applicable. * * @since i-design 1.0 * * @return void */ function idesign_post_nav() { global $post; // Don't print empty markup if there's nowhere to navigate. $previous = ( is_attachment() ) ? get_post( $post->post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); if ( ! $next && ! $previous ) return; ?> ' . __( 'Sticky', 'i-design' ) . ''; if ( ! has_post_format( 'link' ) && 'post' == get_post_type() ) idesign_entry_date(); // Translators: used between list items, there is a space after the comma. $categories_list = get_the_category_list( __( ', ', 'i-design' ) ); 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-design' ) ); 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-design' ), get_the_author() ) ), get_the_author() ); } } endif; if ( ! function_exists( 'idesign_entry_date' ) ) : /** * Print HTML with date information for current post. * * Create your own idesign_entry_date() to override in a child theme. * * @since i-design 1.0 * * @param boolean $echo (optional) Whether to echo the date. Default true. * @return string The HTML-formatted post date. */ function idesign_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-design' ); else $format_prefix = '%2$s'; $date = sprintf( '', esc_url( get_permalink() ), esc_attr( sprintf( __( 'Permalink to %s', 'i-design' ), 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( 'idesign_the_attached_image' ) ) : /** * Print the attached image with a link to the next attached image. * * @since i-design 1.0 * * @return void */ function idesign_the_attached_image() { /** * Filter the image attachment size to use. * * @since i-design 1.0 * * @param array $size { * @type int The attachment height in pixels. * @type int The attachment width in pixels. * } */ $attachment_size = apply_filters( 'idesign_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-design 1.0 * * @return string The Link format URL. */ function idesign_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-design 1.0 * * @param array $classes A list of existing body class values. * @return array The filtered body class list. */ function idesign_body_class( $classes ) { global $post; $idesign_page_nopad = 0; $idesign_page_class = ''; $idesign_no_ubar = 0; if ( function_exists( 'rwmb_meta' ) ) { $idesign_page_nopad = rwmb_meta('idesign_page_nopad'); $idesign_page_class = rwmb_meta('idesign_page_class'); $idesign_no_ubar = rwmb_meta('idesign_no_ubar'); } 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 ( get_theme_mod('wide_layout', '1') != 0 ) { $classes[] = 'nx-wide'; } else { $classes[] = 'nx-boxed'; } //class assignment based on blog layout if ( get_theme_mod('blog_layout', '2') == '2' ) { $classes[] = 'twocol-blog'; } else { $classes[] = 'onecol-blog'; } if( ! empty($idesign_page_class) ) $classes[] = esc_attr($idesign_page_class); // Add No page no padding/margin if( $idesign_page_nopad == 1 ) $classes[] = 'tx-nopad'; // Add PreLoader Class if( get_theme_mod('pre_loader', 1) == 1 ) $classes[] = 'nx-preloader'; if ( is_page_template( 'page_full-width.php' ) ) { $classes[] = 'nx-full-width'; } if ( $idesign_no_ubar == 1 ) { $classes[] = 'no-ubar'; } return $classes; } add_filter( 'body_class', 'idesign_body_class' ); /** * Add postMessage support for site title and description for the Customizer. * * @since i-design 1.0 * * @param WP_Customize_Manager $wp_customize Customizer object. * @return void */ function idesign_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'; $wp_customize->selective_refresh->add_partial( 'basic', array( 'selector' => '.headerinnerwrap .home-link', 'settings' => array( 'custom_logo' ), )); $wp_customize->selective_refresh->add_partial( 'hidesearch', array( 'selector' => '.navbar .topsearch', 'settings' => array( 'show_search' ), ) ); $wp_customize->selective_refresh->add_partial( 'slidersettings', array( 'selector' => '.nx-slider .nx-slider-container', 'settings' => array( 'slidersettings' ), //'render_callback' => 'twentyfifteen_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'basic-1', array( 'selector' => '.tx-topphone', 'settings' => array( 'top_phone' ), //'render_callback' => 'twentyfifteen_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'basic-2', array( 'selector' => '.tx-topmail', 'settings' => array( 'top_email' ), //'render_callback' => 'twentyfifteen_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'social-icons', array( 'selector' => '.socialicons', 'settings' => array( 'itrans_social_facebook' ), //'render_callback' => 'twentyfifteen_customize_partial_blogname', ) ); } add_action( 'customize_register', 'idesign_customize_register' ); /** * Enqueue Javascript postMessage handlers for the Customizer. * * Binds JavaScript handlers to make the Customizer preview * reload changes asynchronously. * * @since i-design 1.0 * * @return void */ function idesign_customize_preview_js() { wp_enqueue_script( 'idesign-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20130226', true ); } add_action( 'customize_preview_init', 'idesign_customize_preview_js' ); function ione_customizer_control() { wp_enqueue_script('customize_control_init', get_template_directory_uri() . '/js/theme-customizer-control.js', array( 'jquery' ), '1.0.2', true ); } add_action( 'customize_controls_enqueue_scripts', 'ione_customizer_control' ); /*-----------------------------------------------------------------------------------*/ /* Metabox /*-----------------------------------------------------------------------------------*/ if ( function_exists( 'rwmb_meta' ) ) { include( get_template_directory() . '/inc/tnext-meta.php' ); } /*-----------------------------------------------------------------------------------*/ /* Custom Functions /*-----------------------------------------------------------------------------------*/ include get_template_directory() . '/inc/custom_functions.php'; include get_template_directory() . '/inc/nx-custom-style.php'; include get_template_directory() . '/inc/woo-functions.php'; /*-----------------------------------------------------------------------------------*/ /* changing default Excerpt length /*-----------------------------------------------------------------------------------*/ function idesign_excerpt_length($length) { return 32; } add_filter('excerpt_length', 'idesign_excerpt_length'); /*-----------------------------------------------------------------------------------*/ /* changing changing default read more text /*-----------------------------------------------------------------------------------*/ function idesign_excerpt_more($more) { global $post; //return ''. __( 'Read More...', 'i-design' ). ''; return ''; } add_filter('excerpt_more', 'idesign_excerpt_more', 21); /**/ function idesign_excerpt_more_link( $excerpt ){ $post = get_post(); $excerpt .= '' . __( 'Read More...', 'i-design' ) . ''; return $excerpt; } add_filter( 'the_excerpt', 'idesign_excerpt_more_link', 21 ); /*-----------------------------------------------------------------------------------*/ /* Adding customizer with kirki /*-----------------------------------------------------------------------------------*/ include get_template_directory() . '/nx-customizer.php'; include get_template_directory() . '/inc/kirki/kirki.php'; /*-----------------------------------------------------------------------------------*/ /* Adding Responsive menu /*-----------------------------------------------------------------------------------*/ include get_template_directory() . '/inc/responsive-menu/responsive-menu.php'; /** * Enqueue the customizer stylesheet. */ function idesign_enqueue_customizer_stylesheet() { wp_register_style( 'idesign-customizer-css', get_template_directory_uri() . '/css/admin-style.css', NULL, NULL, 'all' ); wp_enqueue_style( 'idesign-customizer-css' ); } add_action( 'customize_controls_print_styles', 'idesign_enqueue_customizer_stylesheet' ); /** * Enqueue the customizer stylesheet. */ function idesign_enqueue_admin_stylesheet() { wp_register_style( 'idesign-admin-css', get_template_directory_uri() . '/css/admin-dash-style.css', NULL, NULL, 'all' ); wp_enqueue_style( 'idesign-admin-css' ); } add_action( 'admin_enqueue_scripts', 'idesign_enqueue_admin_stylesheet' ); /* * Loads the Options Panel * * If you're loading from a child theme use stylesheet_directory * instead of template_directory */ // Remove WooCommerce Native Breadcrumb add_action( 'init', 'idesign_remove_wc_breadcrumbs' ); function idesign_remove_wc_breadcrumbs() { remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 ); } // Adding TGM Plugin activation require_once dirname( __FILE__ ) . '/inc/class-tgm-plugin-activation.php'; add_action( 'tgmpa_register', 'idesign_register_required_plugins' ); function idesign_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' => 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' => 'Contact Form 7', // The plugin name. 'slug' => 'contact-form-7', // 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' => 'One Click Demo Import', // The plugin name. 'slug' => 'one-click-demo-import', // The plugin slug (typically the folder name). 'required' => false, // If false, the plugin is only 'recommended' instead of required. ), array( 'name' => 'SiteOrigin PageBuilder ', // The plugin name. 'slug' => 'siteorigin-panels', // 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' => 'SiteOrigin Widgets Bundle', // The plugin name. 'slug' => 'so-widgets-bundle', // 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-design' ), 'menu_title' => __( 'Install Plugins', 'i-design' ), 'installing' => __( 'Installing Plugin: %s', 'i-design' ), // %s = plugin name. 'oops' => __( 'Something went wrong with the plugin API.', 'i-design' ), 'notice_can_install_required' => _n_noop( 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.', 'i-design' ), // %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-design' ), // %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-design' ), // %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-design' ), // %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-design' ), // %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-design' ), // %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-design' ), // %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-design' ), // %1$s = plugin name(s). 'install_link' => _n_noop( 'Begin installing plugin', 'Begin installing plugins', 'i-design' ), 'activate_link' => _n_noop( 'Begin activating plugin', 'Begin activating plugins', 'i-design' ), 'return' => __( 'Return to Required Plugins Installer', 'i-design' ), 'plugin_activated' => __( 'Plugin activated successfully.', 'i-design' ), 'complete' => __( 'All plugins installed and activated successfully. %s', 'i-design' ), // %s = dashboard link. 'nag_type' => 'updated' // Determines admin notice type - can only be 'updated', 'update-nag' or 'error'. ) ); tgmpa( $plugins, $config ); } /* add_action('admin_notices', 'idesign_admin_notice_005'); function idesign_admin_notice_005() { global $current_user ; $user_id = $current_user->ID; $demo_import_url = admin_url('themes.php?page=pt-one-click-demo-import'); $notice_url = esc_url('https://wordpress.org/support/theme/i-design/reviews/?filter=5'); // Check that the user hasn't already clicked to ignore the message if ( ! get_user_meta($user_id, 'idesign_ignore_notice_005') ) { echo '

'; //printf(__('Welcome to "TemplatesNext\'s i-design", Kickstart your website from i-design demo and edit everything instead of creating content from scratch.
', 'i-design'), $demo_import_url); printf(__('
We need your help! If you like i-Design, you can help us by leaving a 5-stars review!
', 'i-design')); printf(__('Post Your Review', 'i-design' ), $notice_url); printf(__('Remind Later
', 'i-design' ), '?idesign_notice_ignore_005=0'); echo "

"; } } add_action('admin_init', 'idesign_notice_ignore_005'); function idesign_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['idesign_notice_ignore_005']) && '0' == $_GET['idesign_notice_ignore_005'] ) { add_user_meta($user_id, 'idesign_ignore_notice_005', 'true', true); } } */