This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm uninstall -g gulp | |
| npm install -g gulp | |
| npm uninstall --save-dev gulp | |
| npm install --save-dev gulp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function google_fonts() { | |
| $query_args = array( | |
| 'family' => 'Open+Sans:400,700|Oswald:700' | |
| 'subset' => 'latin,latin-ext', | |
| ); | |
| wp_register_style( 'google_fonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null ); | |
| } | |
| add_action('wp_enqueue_scripts', 'google_fonts'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* http://meyerweb.com/eric/tools/css/reset/ | |
| v2.0-modified | 20110126 | |
| License: none (public domain) | |
| */ | |
| html, body, div, span, applet, object, iframe, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
| a, abbr, acronym, address, big, cite, code, | |
| del, dfn, em, img, ins, kbd, q, s, samp, | |
| small, strike, strong, sub, sup, tt, var, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| ->add_tab('Слайдер', array( | |
| Field::make( 'complex', 'crb_slider', 'Слайдер' ) | |
| ->set_layout( 'tabbed-horizontal' ) | |
| ->add_fields( array( | |
| Field::make( 'image', 'image', __( 'Слайд') ), | |
| Field::make( 'text', 'title', 'Заголовок'), | |
| Field::make( 'text', 'subtitle_1', 'Подзаголовок 1')->set_width( 70 ), | |
| Field::make( 'text', 'icon_1', 'Иконка подзаголовка 1 fontawesome')->set_width( 30 )->set_default_value('fa fa-bus'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-------------------------------- ПОЛУЧЕНИЕ ----------------------------------> | |
| <?php | |
| // settings_common | |
| $wmp_phone_1 = carbon_get_theme_option( 'wmp_phone_1', $type = null ); | |
| $wmp_phone_2 = carbon_get_theme_option( 'wmp_phone_2', $type = null ); | |
| $wmp_phone_3 = carbon_get_theme_option( 'wmp_phone_3', $type = null ); | |
| $wmp_email = carbon_get_theme_option( 'wmp_email', $type = null ); | |
| $wmp_map = carbon_get_theme_option( 'wmp_map', $type = null ); | |
| $wmp_address = carbon_get_theme_option( 'wmp_address', $type = null ); | |
| $wmp_time = carbon_get_theme_option( 'wmp_time', $type = null ); |