esc_html__('sidebar', 'liquid' ), 'id' => 'liquid_sidebar', 'before_title' => '
', 'after_title' => '
', 'before_widget' => '
', 'after_widget' => '
' )); register_sidebar(array( 'name' => esc_html__('headline', 'liquid' ), 'id' => 'liquid_headline', 'before_title' => '
', 'after_title' => '
', 'before_widget' => '
', 'after_widget' => '
' )); register_sidebar(array( 'name' => esc_html__('main_head', 'liquid' ), 'id' => 'liquid_main_head', 'before_title' => '
', 'after_title' => '
', 'before_widget' => '
', 'after_widget' => '
' )); register_sidebar(array( 'name' => esc_html__('main_foot', 'liquid' ), 'id' => 'liquid_main_foot', 'before_title' => '
', 'after_title' => '
', 'before_widget' => '
', 'after_widget' => '
' )); register_sidebar(array( 'name' => esc_html__('top_header', 'liquid' ), 'id' => 'liquid_top_header', 'before_title' => '
', 'after_title' => '
', 'before_widget' => '
', 'after_widget' => '
' )); register_sidebar(array( 'name' => esc_html__('footer', 'liquid' ), 'id' => 'liquid_footer', 'before_title' => '
', 'after_title' => '
', 'before_widget' => '
', 'after_widget' => '
' )); } // body_class add_filter('body_class', 'liquid_class_names'); function liquid_class_names($classes) { if (is_single()){ $cat = get_the_category(); if(!empty($cat)){ $parent_cat_id = $cat[0]->parent; if(empty($parent_cat_id)){ $parent_cat_id = $cat[0]->cat_ID; } }else{ $parent_cat_id = "0"; } $classes[] = "category_".$parent_cat_id; } if (is_page()){ $page = get_post( get_the_ID() ); $slug = $page->post_name; $classes[] = "page_".$slug; } return $classes; } // widget_text add_filter('widget_text', 'do_shortcode'); // add_theme_support function liquid_theme_setup() { add_theme_support( 'custom-background' ); add_theme_support( 'title-tag' ); add_theme_support( 'post-thumbnails' ); add_theme_support( 'automatic-feed-links' ); if ( ! isset( $content_width ) ) $content_width = 1024; // editor-style add_theme_support( 'editor-styles' ); add_editor_style( array( 'css/bootstrap.min.css', 'css/icomoon.css', 'css/block.css', 'css/editor-style.css' ) ); // languages load_theme_textdomain('liquid', get_template_directory() . '/languages'); // nav_menu register_nav_menus(array( 'global-menu' => esc_html__('Global Menu', 'liquid' ) )); // custom-header add_theme_support( 'custom-header', array( 'random-default' => false, 'width' => 1200, 'height' => 600, 'flex-height' => true, 'flex-width' => false, 'default-text-color' => false, 'header-text' => false, 'uploads' => true, 'admin-preview-callback' => 'liquid_admin_header_image', ) ); // woocommerce add_theme_support( 'woocommerce' ); // Gutenberg add_theme_support( 'align-wide' ); add_theme_support( 'editor-color-palette', array( array( 'name' => __( 'LIQUID Blue', 'liquid' ), 'slug' => 'liquid-blue', 'color' => '#32bdeb', ), array( 'name' => __( 'LIQUID Dark Blue', 'liquid' ), 'slug' => 'liquid-dark-blue', 'color' => '#00a5d4', ), array( 'name' => __( 'Red', 'liquid' ), 'slug' => 'liquid-red', 'color' => '#eb6032', ), array( 'name' => __( 'Orange', 'liquid' ), 'slug' => 'liquid-orange', 'color' => '#ff6900', ), array( 'name' => __( 'Pink', 'liquid' ), 'slug' => 'liquid-pink', 'color' => '#f6adc6', ), array( 'name' => __( 'Yellow', 'liquid' ), 'slug' => 'liquid-yellow', 'color' => '#fff100', ), array( 'name' => __( 'Green', 'liquid' ), 'slug' => 'liquid-green', 'color' => '#3eb370', ), array( 'name' => __( 'Purple', 'liquid' ), 'slug' => 'liquid-purple', 'color' => '#745399', ), array( 'name' => __( 'White', 'liquid' ), 'slug' => 'liquid-white', 'color' => '#ffffff', ), array( 'name' => __( 'Dark Gray', 'liquid' ), 'slug' => 'liquid-dark-gray', 'color' => '#333333', ), ) ); } add_action( 'after_setup_theme', 'liquid_theme_setup' ); // Gutenberg function liquid_block_editor_styles() { wp_enqueue_style( 'liquid-block-editor-styles', get_theme_file_uri( '/css/editor-style.css' ), false, '1.0', 'all' ); } add_action( 'enqueue_block_editor_assets', 'liquid_block_editor_styles' ); // custom-header-callback function liquid_admin_header_image() { ?>

<?php bloginfo('name'); ?>

get_setting( 'blogname' )->transport = 'postMessage'; $lqd_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $lqd_customize->add_section('col_sections', array( 'title' => esc_html__('LIQUID PRESS', 'liquid' ), 'priority' => 999, )); $lqd_customize->add_setting('col_options[_recommend]', array( 'type' => 'option', )); $lqd_customize->add_control('col_options[_recommend]', array( 'label' => esc_html__('LIQUID PRESS', 'liquid' ), 'description'=> '

'.esc_html__('Web Marketing tool LIQUID CONNECT', 'liquid' ).'

'.esc_html__('Professional features and support', 'liquid' ).'

', 'section' => 'col_sections', 'settings' => 'col_options[_recommend]', 'type' => 'hidden', )); } add_action( 'customize_register', 'liquid_theme_customize_register' ); // Remove p tags from category description remove_filter('term_description','wpautop'); // get_the_archive_title function liquid_archive_title( $title ){ if ( is_category() ) { $title = single_term_title( '', false ); } return $title; } add_filter( 'get_the_archive_title', 'liquid_archive_title', 10 ); // add post class function liquid_post_class( $classes ) { if( is_archive() || is_search() ){ $classes[] = 'card'; $classes[] = 'col-sm-6'; }elseif( is_single() ){ $classes[] = 'detail'; }else{ $classes[] = 'card'; $classes[] = 'col-md-4'; $classes[] = 'col-sm-6'; } return $classes; } add_filter( 'post_class', 'liquid_post_class' ); // navigation function liquid_paging_nav() { global $wp_query, $wp_rewrite; // Don't print empty markup if there's only one page. if ( $wp_query->max_num_pages < 2 ) { return; } $paged = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1; $pagenum_link = html_entity_decode( get_pagenum_link() ); $query_args = array(); $url_parts = explode( '?', $pagenum_link ); if ( isset( $url_parts[1] ) ) { wp_parse_str( $url_parts[1], $query_args ); } $pagenum_link = remove_query_arg( array_keys( $query_args ), $pagenum_link ); $pagenum_link = trailingslashit( $pagenum_link ) . '%_%'; $format = $wp_rewrite->using_index_permalinks() && ! strpos( $pagenum_link, 'index.php' ) ? 'index.php/' : ''; $format .= $wp_rewrite->using_permalinks() ? user_trailingslashit( $wp_rewrite->pagination_base . '/%#%', 'paged' ) : '?paged=%#%'; // Set up paginated links. $links = paginate_links( array( 'base' => $pagenum_link, 'format' => $format, 'total' => $wp_query->max_num_pages, 'current' => $paged, 'mid_size' => 1, 'add_args' => array_map( 'urlencode', $query_args ), 'prev_text' => __( '< Prev', 'liquid' ), 'next_text' => __( 'Next >', 'liquid' ), ) ); if ( $links ) : ?> get_error_message().$liquid_json_url; }else{ $liquid_json = json_decode($liquid_json['body']); } } function liquid_admin_notices() { global $pagenow, $liquid_json, $liquid_json_error; if ( isset( $_GET['liquid_admin_notices_dismissed'] ) ) { set_transient( 'liquid_admin_notices', 'dismissed', 60*60*24*30 ); } if ( $pagenow == 'index.php' || $pagenow == 'themes.php' || $pagenow == 'widgets.php' || $pagenow == 'nav-menus.php' || $pagenow == 'plugins.php' ) { if( !empty($liquid_json->news) && get_transient( 'liquid_admin_notices' ) != 'dismissed' ){ echo '

'.$liquid_json->news.'

×
'; } if(!empty($liquid_json_error)) { echo ''; } } } add_action( 'admin_notices', 'liquid_admin_notices' ); ?>