/** * Mobile Menu Header Configuration. * * @package Astra * @link https://wpastra.com/ * @since 4.5.2 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Register mobile-menu header builder Customizer Configurations. * * @since 4.5.2 * @return array Astra Customizer Configurations with updated configurations. */ function astra_header_mobile_menu_configuration() { $_section = 'section-header-mobile-menu'; $_configs = array( /** * Option: Header Builder Tabs */ array( 'name' => $_section . '-ast-context-tabs', 'section' => $_section, 'type' => 'control', 'control' => 'ast-builder-header-control', 'priority' => 0, 'description' => '', ), // Section: Primary Header. array( 'name' => $_section, 'type' => 'section', 'title' => __( 'Off-Canvas Menu', 'astra' ), 'panel' => 'panel-header-builder-group', 'priority' => 40, ), /** * Option: Theme Menu create link */ array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-create-menu-link]', 'default' => astra_get_option( 'header-mobile-menu-create-menu-link' ), 'type' => 'control', 'control' => 'ast-customizer-link', 'section' => $_section, 'priority' => 30, 'link_type' => 'section', 'linked' => 'menu_locations', 'link_text' => __( 'Configure Menu from Here.', 'astra' ), 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing ast-bottom-section-divider' ), ), // Option: Submenu Divider Checkbox. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'default' => astra_get_option( 'header-mobile-menu-submenu-item-border' ), 'type' => 'control', 'control' => 'ast-toggle-control', 'section' => $_section, 'priority' => 150, 'title' => __( 'Item Divider', 'astra' ), 'context' => Astra_Builder_Helper::$general_tab, 'transport' => 'postMessage', 'divider' => array( 'ast_class' => 'ast-top-section-divider' ), ), // Option: Menu Color Divider. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-divider-colors-divider]', 'section' => $_section, 'type' => 'control', 'control' => 'ast-heading', 'title' => __( 'Item Divider', 'astra' ), 'priority' => 150, 'settings' => array(), 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'operator' => '==', 'value' => true, ), ), 'divider' => array( 'ast_class' => 'ast-section-spacing' ), ), // Option: Submenu item Border Size. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-b-size]', 'type' => 'control', 'control' => 'ast-slider', 'default' => astra_get_option( 'header-mobile-menu-submenu-item-b-size' ), 'section' => $_section, 'priority' => 150, 'transport' => 'postMessage', 'title' => __( 'Divider Size', 'astra' ), 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'operator' => '==', 'value' => true, ), ), 'suffix' => 'px', 'input_attrs' => array( 'min' => 1, 'step' => 1, 'max' => 10, ), 'divider' => array( 'ast_class' => 'ast-bottom-dotted-divider ast-section-spacing' ), ), // Option: Submenu item Border Color. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-b-color]', 'default' => astra_get_option( 'header-mobile-menu-submenu-item-b-color' ), 'type' => 'control', 'control' => 'ast-color', 'transport' => 'postMessage', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ), 'title' => __( 'Divider Color', 'astra' ), 'section' => $_section, 'priority' => 150, 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'operator' => '==', 'value' => true, ), ), ), // Option Group: Menu Color. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'type' => 'control', 'control' => 'ast-color-group', 'title' => __( 'Link', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 90, 'context' => Astra_Builder_Helper::$design_tab, 'responsive' => true, 'divider' => array( 'ast_title' => __( 'Menu Color', 'astra' ), 'ast_class' => 'ast-section-spacing', ), ), array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'control', 'control' => 'ast-color-group', 'title' => __( 'Background', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 90, 'context' => Astra_Builder_Helper::$design_tab, 'responsive' => true, 'divider' => array( 'ast_title' => '', 'ast_class' => class_exists( 'Astra_Ext_Extension' ) && Astra_Ext_Extension::is_active( 'colors-and-background' ) ? 'ast-bottom-dotted-divider' : '', ), ), // Option: Menu Color. array( 'name' => 'header-mobile-menu-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'type' => 'sub-control', 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'tab' => __( 'Normal', 'astra' ), 'section' => $_section, 'title' => __( 'Normal', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 7, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Menu Background image, color. array( 'name' => 'header-mobile-menu-bg-obj-responsive', 'default' => astra_get_option( 'header-mobile-menu-bg-obj-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'sub-control', 'control' => 'ast-responsive-background', 'section' => $_section, 'transport' => 'postMessage', 'tab' => __( 'Normal', 'astra' ), 'data_attrs' => array( 'name' => 'header-mobile-menu-bg-obj-responsive' ), 'title' => __( 'Normal', 'astra' ), 'priority' => 9, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Menu Hover Color. array( 'name' => 'header-mobile-menu-h-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-h-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'tab' => __( 'Hover', 'astra' ), 'type' => 'sub-control', 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'title' => __( 'Hover', 'astra' ), 'section' => $_section, 'responsive' => true, 'rgba' => true, 'priority' => 19, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Menu Hover Background Color. array( 'name' => 'header-mobile-menu-h-bg-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-h-bg-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'sub-control', 'title' => __( 'Hover', 'astra' ), 'section' => $_section, 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'tab' => __( 'Hover', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 21, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Active Menu Color. array( 'name' => 'header-mobile-menu-a-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-a-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'type' => 'sub-control', 'section' => $_section, 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'tab' => __( 'Active', 'astra' ), 'title' => __( 'Active', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 31, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Active Menu Background Color. array( 'name' => 'header-mobile-menu-a-bg-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-a-bg-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'sub-control', 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'section' => $_section, 'title' => __( 'Active', 'astra' ), 'tab' => __( 'Active', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 33, 'context' => Astra_Builder_Helper::$general_tab, ), /** * Option: WOO Off Canvas Menu Submenu Color Section divider */ array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-typo-divider]', 'type' => 'control', 'control' => 'ast-heading', 'section' => $_section, 'title' => __( 'Font', 'astra' ), 'priority' => 120, 'settings' => array(), 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing', ), ), // Option Group: Menu Typography. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'default' => astra_get_option( 'header-mobile-menu-header-menu-typography' ), 'type' => 'control', 'control' => 'ast-settings-group', 'title' => __( 'Menu Font', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 120, 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing', ), ), // Option: Menu Font Family. array( 'name' => 'header-mobile-menu-font-family', 'default' => astra_get_option( 'header-mobile-menu-font-family', 'inherit' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'type' => 'sub-control', 'section' => $_section, 'transport' => 'postMessage', 'control' => 'ast-font', 'font_type' => 'ast-font-family', 'title' => __( 'Font Family', 'astra' ), 'priority' => 22, 'connect' => 'header-mobile-menu-font-weight', 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-sub-bottom-dotted-divider' ), ), // Option: Menu Font Weight. array( 'name' => 'header-mobile-menu-font-weight', 'default' => astra_get_option( 'header-mobile-menu-font-weight', 'inherit' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'section' => $_section, 'type' => 'sub-control', 'control' => 'ast-font', 'transport' => 'postMessage', 'font_type' => 'ast-font-weight', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_font_weight' ), 'title' => __( 'Font Weight', 'astra' ), 'priority' => 23, 'connect' => 'header-mobile-menu-font-family', 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-sub-bottom-dotted-divider' ), ), // Option: Menu Font Size. array( 'name' => 'header-mobile-menu-font-size', 'default' => astra_get_option( 'header-mobile-menu-font-size' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'section' => $_section, 'type' => 'sub-control', 'priority' => 24, 'title' => __( 'Font Size', 'astra' ), 'control' => 'ast-responsive-slider', 'transport' => 'postMessage', 'context' => Astra_Builder_Helper::$general_tab, 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_slider' ), 'suffix' => array( 'px', 'em', 'vw', 'rem' ), 'input_attrs' => array( 'px' => array( 'min' => 0, 'step' => 1, 'max' => 200, ), 'em' => array( 'min' => 0, 'step' => 0.01, 'max' => 20, ), 'vw' => array( 'min' => 0, 'step' => 0.1, 'max' => 25, ), 'rem' => array( 'min' => 0, 'step' => 0.1, 'max' => 20, ), ), ), /** * Option: Font Extras */ array( 'name' => 'font-extras-header-mobile-menu', 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'section' => $_section, 'type' => 'sub-control', 'control' => 'ast-font-extras', 'priority' => 24, 'default' => astra_get_option( 'font-extras-header-mobile-menu' ), 'title' => __( 'Font Extras', 'astra' ), ), /** * Option: Divider */ array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-menu-spacing-divider]', 'section' => $_section, 'title' => __( 'Spacing', 'astra' ), 'type' => 'control', 'control' => 'ast-heading', 'priority' => 150, 'settings' => array(), 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing' ), ), // Option - Menu Space. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-menu-spacing]', 'default' => astra_get_option( 'header-mobile-menu-menu-spacing' ), 'type' => 'control', 'control' => 'ast-responsive-spacing', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ), 'transport' => 'postMessage', 'section' => $_section, 'priority' => 150, 'title' => __( 'Menu Spacing', 'astra' ), 'linked_choices' => true, 'unit_choices' => array( 'px', 'em', '%' ), 'choices' => array( 'top' => __( 'Top', 'astra' ), 'right' => __( 'Right', 'astra' ), 'bottom' => __( 'Bottom', 'astra' ), 'left' => __( 'Left', 'astra' ), ), 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-bottom-section-divider ast-section-spacing' ), ), /** * Option: Margin Space */ array( 'name' => ASTRA_THEME_SETTINGS . '[' . $_section . '-margin]', 'default' => astra_get_option( $_section . '-margin' ), 'type' => 'control', 'transport' => 'postMessage', 'control' => 'ast-responsive-spacing', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ), 'section' => $_section, 'priority' => 220, 'title' => __( 'Margin', 'astra' ), 'linked_choices' => true, 'unit_choices' => array( 'px', 'em', '%' ), 'choices' => array( 'top' => __( 'Top', 'astra' ), 'right' => __( 'Right', 'astra' ), 'bottom' => __( 'Bottom', 'astra' ), 'left' => __( 'Left', 'astra' ), ), 'context' => Astra_Builder_Helper::$design_tab, ), ); $_configs = array_merge( $_configs, Astra_Builder_Base_Configuration::prepare_visibility_tab( $_section ) ); if ( Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) { array_map( 'astra_save_header_customizer_configs', $_configs ); } return $_configs; } if ( Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) { add_action( 'init', 'astra_header_mobile_menu_configuration' ); }{"id":3510,"date":"2026-02-09T16:55:59","date_gmt":"2026-02-09T13:55:59","guid":{"rendered":"https:\/\/mizantechinstitute.com\/group5dm\/?p=3510"},"modified":"2026-02-09T16:55:59","modified_gmt":"2026-02-09T13:55:59","slug":"%eb%ac%b4%eb%a3%8c-%ec%8a%ac%eb%a1%af-%eb%a8%b8%ec%8b%a0%ec%97%90-%eb%8c%80%ed%95%9c-%ea%b6%81%ea%b7%b9%ec%9d%98-%ea%b0%9c%ec%9a%94","status":"publish","type":"post","link":"https:\/\/mizantechinstitute.com\/group5dm\/%eb%ac%b4%eb%a3%8c-%ec%8a%ac%eb%a1%af-%eb%a8%b8%ec%8b%a0%ec%97%90-%eb%8c%80%ed%95%9c-%ea%b6%81%ea%b7%b9%ec%9d%98-%ea%b0%9c%ec%9a%94\/","title":{"rendered":"\ubb34\ub8cc \uc2ac\ub86f \uba38\uc2e0\uc5d0 \ub300\ud55c \uad81\uadf9\uc758 \uac1c\uc694"},"content":{"rendered":"
\uc678\ud314\uc774 \uac15\ub3c4\ub294 \uc624\ub798\uc804\ubd80\ud130 \uce74\uc9c0\ub178 \ubc29\ubb38\uc790\ub4e4\uc5d0\uac8c \uc804 \uc138\uacc4\uc801\uc73c\ub85c \uc778\uae30 \uc788\ub294 \uc990\uac70\uc6c0\uc758 \ud55c \ud615\ud0dc\ub85c \uc790\ub9ac\uc7a1\uc544\uc654\ub2e4.\ub808\ubc84\ub97c \ub2f9\uae30\uac70\ub098 \ubc84\ud2bc\uc744 \uae30\ub300\ud558\uba74\uc11c, \uc0c1\uc9d5\ub4e4\uc774 \uc815\ub82c\ub418\uae30\ub97c \uae30\ub300\ud558\uba70 \uae30\ub2e4\ub9ac\uace0, \ud070 \uc131\uacf5\uc744 \uae30\ub300\ud558\uba74\uc11c \uae30\ub2e4\ub9ac\ub294 \uac83\uc740 \uc804 \uc138\uacc4\uc801\uc778 \uacbd\ud5d8\uc774\ub2e4.\uc628\ub77c\uc778 \ub3c4\ubc15\uc7a5\uc758 \ucd9c\ud604\uc73c\ub85c, \uc790\ud310\uae30\uc758 \uc0ac\uc6a9 \uac00\ub2a5\uc131\uc774 \ub610\ud55c \ud655\ub300\ub418\uc5c8\uace0, \uac1c\uc778\ub4e4\uc774 \uc790\uc2e0\ub4e4\uc774 \uc18c\uc720\ud55c \uc9d1\uc5d0\uc11c \uc2ac\ub86f \uac8c\uc784\uc744 \uc990\uae38 \uc218 \uc788\uac8c \ub418\uc5c8\ub2e4.\uc774 \ud3ec\uc2a4\ud2b8, \uc6b0\ub9ac\ub294 \uc77c\uccb4\uc758 \ube44\uc6a9\uc774 \uc5c6\ub294 \uc2ac\ub86f \uba38\uc2e0\uc758 \uc138\uacc4 \ud0d0\ud5d8\ud558\uba70, \uadf8\uac83\ub4e4\uc774 \ubb34\uc5c7\uc778\uc9c0, \uc5b4\ub514\uc11c \ucc3e\uc744 \uc218 \uc788\ub294\uc9c0, \uadf8\ub9ac\uace0 \uc5b4\ub5a4 \ubc29\ubc95\uc73c\ub85c \uacbd\ud5d8\uc744 \uadf9\ub300\ud654\ud560 \uc218 \uc788\ub294\uc9c0\ub97c \ub17c\uc758\ud560 \uac83\uc774\ub2e4.<\/p>\n
\uc774\ub984\uc5d0\uc11c \uc54c\uc544\ubcfc \uc218 \uc788\ub4ef, \ubb34\ub8cc \uc678\ud314\uc774 \uac15\ub3c4\ub294 \ud604\uae08\uc744 \ubca0\ud305 \uc5c6\uc774 \uc990\uae38 \uc218 \uc788\ub294 \uc2ac\ub86f \uac8c\uc784\uc774\ub2e4.\uc774\ub4e4\uc740 \uc0ac\uc2e4\uc0c1 \uc2e4\uc81c \ud604\uae08 \ubc84\uc804\uacfc \ub3d9\uc77c\ud558\uba70, \ub3d9\uc77c\ud55c \uadf8\ub798\ud53d, \uac8c\uc784\ud50c\ub808\uc774 \uae30\ub2a5, \ud61c\ud0dd \ud2b9\uc9d5\ub4e4\uc744 \ud2b9\uc9d5\ud558\uace0 \uc788\ub2e4.\uc720\uc77c\ud55c \ucc28\uc774\uc810\ub294 \ubb34\ub8cc \uc678\ud314\uc774 \uac15\ub3c4\ub97c \ud50c\ub808\uc774\ud560 \ub54c \uc2e4\uc81c \ud604\uae08\uc744 \uc5bb\uc744 \uae30\ud68c\uac00 \uc5c6\ub2e4\ub294 \uac83\uc774\ub2e4.<\/p>\n
\ubb34\ub8cc \uc2ac\ub86f \uba38\uc2e0\ub294 \ub2e4\uc591\ud55c \uac8c\uc784\uc5d0 \uc775\uc219\ud574\uc9c0\uace0 \uae30\uc220\uc744 \uac1c\uc120\ud558\ub294 \ud6cc\ub96d\ud55c \ubc29\ubc95\uc774\ub2e4.\uacbd\uc81c\uc801 \uc704\ud5d8\uc131 \uc5c6\uc774\ub3c4 \uc990\uae30\ub294\ub370, \ub610\ud55c \ub2e8\uc21c\ud788 \uc624\ub77d\ub97c \uc704\ud574 \ub3c8\uc744 \uac70\ub294 \ub300\uc2e0 \uc990\uae38 \uc218 \uc788\ub2e4.\uc5ec\ub7ec \uc628-\ub77c\uc778 \uac8c\uc784\uc5c5\uccb4\ub294 \ud3ed\ub113\uc740 \uc77c\uccb4\uc758 \ube44\uc6a9\uc774 \uc5c6\ub294 \uc790\ud310\uae30\ub97c \uc81c\uacf5\ud55c\ub2e4, \uac8c\uc774\uba38\ub4e4\uc774 \ub2e4\uc591\ud55c \uc2a4\ud0c0\uc77c\ub4e4, \ub514\uc790\uc778\ub4e4, \uadf8\ub9ac\uace0 \uac8c\uc784\ud50c\ub808\uc774\ub4e4\uc744 \ud0d0\ud5d8\ud560 \uc218 \uc788\uac8c \ub9cc\ub4e0\ub2e4<\/p>\n
\uc644\uc804\ud788 \ubb34\ub8cc\uc778 \uc2ac\ub86f \uba38\uc2e0\ub97c \ud655\uc778\ud558\ub294 \uac83\uc740 \ub610\ud55c\ucc98\ub7fc \uc9c4\uc9dc \ub3c8 \ud604\uae08\uc744 \uc55e\uc73c\ub85c \ubca0\ud305\ud558\uae30 \uc704\ud55c \uacc4\ud68d\ub97c \uac00\uc9c4 \uc0ac\ub78c\ub4e4\uc5d0\uac8c \uc720\uc6a9\ud55c \ubc29\ubc95\uc774 \ub420 \uc218 \uc788\ub2e4.\ub2e4\uc591\ud55c \uac8c\uc784\uc744 \uc2e4\ud5d8\ud574\ubcf4\uace0, \uadf8\ub4e4\uc758 \uc791\ub3d9\ubc95\uc744 \ud30c\uc545\ud568\uc73c\ub85c\uc368, \ud50c\ub808\uc774\uc5b4\ub4e4\uc740 \uc5b4\ub5a0\ud55c \uc2ac\ub86f\uac00 \uadf8\ub4e4\uc758 \uc2dc\uac04\uacfc \ub3c8\uc5d0 \uac00\uce58\uac00 \uc788\ub294\uc9c0\uc744 \uc54c\uac8c\ub420 \uc218 \uc788\ub2e4.<\/p>\n
\ubb34\ub8cc \uc678\ud314\uc774 \uac15\ub3c4\ub97c \uc778\ud130\ub137 \uc0c1\uc5d0\uc11c \ucc3e\uc744 \uc218 \uc788\ub294 \ub2e4\uc218\uc758 \uc218\ub2e8\uc774 \uc788\ub2e4.\ud55c \uac00\uc9c0 \uc120\ud0dd\uc740 \uacf5\uc9dc\uc778 \ub180\uc774 \uc120\ud0dd\uc9c0\ub97c \uc81c\uacf5\ud558\ub294 \uc628-\ub77c\uc778 \ub3c4\ubc15\uc7a5\ub97c \ubc29\ubb38\ud558\ub294\uc774\ub2e4.\uc774\ub4e4 \uac8c\uc784\uc5c5\uccb4\ub294 \uc790\uc8fc \uc77c\uccb4\uc758 \ube44\uc6a9\uc774 \uc5c6\ub294 \ube44\ub514\uc624 \uac8c\uc784\uc744 \uc704\ud55c \uc804\uc6a9 \uc139\uc158\uc744 \uac00\uc9c0\uace0 \uc788\uc73c\uba70, \uac8c\uc774\uba38\ub4e4\uc740 \uacc4\uc815 \uc0dd\uc131\uc774\ub098 \uc608\uae08 \uc5c6\uc774 \ud3ed\ub113\uc740 \uc678\ud314\uc774 \uac15\ub3c4 \uc911\uc5d0\uc11c \uc120\ud0dd\ud560 \uc218 \uc788\uac8c \ub41c\ub2e4.\uc77c\ubd80 \uc778\ud130\ub137 \uc0c1 \uce74\uc9c0\ub178 \uc0ac\uc774\ud2b8\ub294 \ub610\ud55c \uadf8\ub4e4\uc758 \ud658\uc601 \uc778\uc13c\ud2f0\ube0c \ud328\ud0a4\uc9c0\ub85c\uc11c\uc758 \uc77c\ubd80\ub85c\uc11c \uc644\uc804\ud788 \ubb34\ub8cc\uc778 \ud68c\uc804\uc744 \uc81c\uacf5\ud558\uc5ec \ud2b9\uc815 \uacfc\uc77c \uba38\uc2e0\ub97c \ub3c8\uc744 \uc804\ud600 \uc4f0\uc9c0 \uc54a\uace0 \ud14c\uc2a4\ud2b8\ud560 \uc218 \uc788\uac8c \ud55c\ub2e4.<\/p>\n
\ub610 \ub2e4\ub978 \ubc29\uc2dd\uc73c\ub85c\ub294 \uc18c\uc15c \uc628\ub77c\uc778 \uce74\uc9c0\ub178 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uacfc \uc0ac\uc774\ud2b8\ub97c \ud1b5\ud558\uc5ec \ubb34\ub8cc \uc2ac\ub86f\ub97c \ubc1c\uacac\ud560 \uc218 \uc788\ub2e4.\uc774\ub4e4 \uc2dc\uc2a4\ud15c\uc740 \uc77c\uccb4\uc758 \ube44\uc6a9\uc774 \uc5c6\ub294\uc73c\ub85c \uc990\uae38 \uc218 \uc788\ub294 \ud3ed\ub113\uc740 \uc2ac\ub86f \uac8c\uc784\uc744 \uc81c\uacf5\ud558\uc5ec, \ub300\uac1c \ucf54\uc778\uc774\ub098 \uc628\ub77c\uc778 \ud654\ud3d0\ub97c \uad6c\uc785\ud558\uc5ec \ud655\ub300\ub41c \uac8c\uc784\ud50c\ub808\uc774\ub97c \ud560 \uc218 \uc788\ub294 \uc120\ud0dd\uc9c0\ub97c \uc81c\uacf5\ud55c\ub2e4.\uc18c\uc15c \uce74\uc9c0\ub178 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc740 \uce90\uc8fc\uc5bc\ud558\uace0 \uc0ac\ud68c\uc801\uc778 \ube44\ub514\uc624 \uac8c\uc784 \uacbd\ud5d8\uc744 \ucc3e\uc544\ub2e4\ub2c8\ub294 \uc0ac\ub78c\ub4e4\uc5d0\uac8c \uc778\uae30 \uc788\ub294 \uc635\uc158\uc774\ub2e4.<\/p>\n
\ub354\ubd88\uc5b4\uc11c, \uc77c\uccb4\uc758 \ube44\uc6a9\uc774 \uc5c6\ub294 \uc678\ud314\uc774 \uac15\ub3c4\uc5d0 \ub300\ud55c \uc815\ubcf4\ub97c \uc81c\uacf5\ud558\ub294 \uc6f9\uc0ac\uc774\ud2b8\uc640 \ud3ec\ub7fc\ub4e4\uc774 \ud2b9\ud654\ub418\uc5b4 \uc788\ub2e4.\uc774\ub4e4 \ud50c\ub7ab\ud3fc\uc740 \ub300\ubd80\ubd84 \uc758\uacac, \uad8c\uc720, \uadf8\ub9ac\uace0 \ubbff\uc744 \uc218 \uc788\ub294 \uc778\ud130\ub137 \uc0c1 \uce74\uc9c0\ub178 \uc0ac\uc774\ud2b8\uc640 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc73c\ub85c \uc5f0\uacb0\ub418\ub294 \ud3c9\ud310 \uc88b\uc740 \ub9c1\ud06c\ub97c \ud3ec\ud568\ud558\uace0 \uc788\ub2e4, \uac8c\uc774\uba38\ub4e4\uc774 \ub2e4\uc591\ud55c \uacf5\uc9dc\uc778 \uc2ac\ub86f \uba38\uc2e0\uc758 \uc120\ud0dd\uc9c0\ub97c \ucc3e\uc744 \uc218 \uc788\ub2e4.<\/p>\n
\uc77c\uccb4\uc758 \ube44\uc6a9\uc774 \uc5c6\ub294 \uc2ac\ub86f \ud0d0\ud5d8\ud558\ub294 \uac83\uc774 \ud2b9\uc815 \uc7ac\uc815\uc801 \ud22c\uc790\uac00 \ud544\uc694\ud558\uc9c0 \uc54a\uc740 \uac83\uc774 \uc0ac\uc2e4\uc774\uc9c0\ub9cc, \uc5ec\uc804\ud788 \uac8c\uc784\ud50c\ub808\uc774 \uacbd\ud5d8\uc744 \ud5a5\uc0c1\uc2dc\ud0ac \uc218 \uc788\ub294 \uae30\uc220\uc774 \uc788\ub2e4.\uc5ec\uae30\uc5d0 \uba87 \uac00\uc9c0 \uba85\uc2ec\ud574\uc57c \ud560 \ud301\uac00 \uc788\ub2e4:<\/p>\n
\uc644\uc804\ud788 \ubb34\ub8cc\uc778 \uacfc\uc77c \uba38\uc2e0\ub294 \uc990\uac70\uc6b4 \uc548\uc804\ud558\uac8c \uc7ac\ubbf8\ub97c \uc704\ud55c \ubc29\uc2dd\uc774\ub2e4.\uac8c\uc784\uc5d0 \ub300\ud55c \uae30\uc220\uc744 \uac1c\uc120\ud558\uac70\ub098, \uc2e0\uc120\ud55c \ub180\uc774\ub97c \uc2e4\ud5d8\ud574\ubcf4\uace0, \uadf8\uc800 \uc990\uac70\uc6c0\uc744 \uc88b\uc740 \ub300\uc548\uc774 \ub420 \uc218 \uc788\ub294 \ub2e4\uc591\ud55c \uc635\uc158\ub4e4\uc774 \uc628\ub77c\uc778 \uc0c1\uc5d0\uc11c \uc81c\uacf5\ub418\uace0 \uc788\ub2e4.\uc774 \uae00\uc5d0\uc11c \uc5b8\uae09\ub41c \uc544\uc774\ub514\uc5b4\ub4e4\uc744 \ub530\ub984\uc73c\ub85c\uc368 \uacf5\uc9dc\uc778 \ud3ec\ud2b8 \uc990\uac70\uc6c0\uc744 \uc99d\uc9c4\ud560 \uc218 \uc788\uace0, \uc120\ud638\ub418\ub294 kr-dafabet.net<\/a> \uc624\ub77d \ud0c0\uc785\uc758 \uc990\uac70\uc6c0\uc744 \uac1c\uc120\ud560 \uc218 \uc788\ub2e4.<\/p>\n \uba85\uc2ec\ud558\uc2ed\uc2dc\uc624, \uacf5\uc9dc\uc778 \uacfc\uc77c \uba38\uc2e0 \ud50c\ub808\uc774\ub294 \ud56d\uc0c1 \ucc45\uc784 \uc788\uac8c \uc774\ub8e8\uc5b4\uc838\uc57c \ud55c\ub2e4\ub294 \uac83\uc744 \uae30\uc5b5\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.\ub530\ub77c\uc11c, \ub9ac\uc5c8\ub358, \ube44\ub514\uc624 \uac8c\uc784\uc758 \uc7ac\ubbf8\ub97c \ub290\uaef4\ubcf4\uba70 \uc990\uac70\uc6c0\uc744 \ub204\ub9ac\uc2ed\uc2dc\uc624!<\/p>\n","protected":false},"excerpt":{"rendered":" \uc678\ud314\uc774 \uac15\ub3c4\ub294 \uc624\ub798\uc804\ubd80\ud130 \uce74\uc9c0\ub178 \ubc29\ubb38\uc790\ub4e4\uc5d0\uac8c \uc804 \uc138\uacc4\uc801\uc73c\ub85c \uc778\uae30 \uc788\ub294 \uc990\uac70\uc6c0\uc758 \ud55c \ud615\ud0dc\ub85c \uc790\ub9ac\uc7a1\uc544\uc654\ub2e4.\ub808\ubc84\ub97c \ub2f9\uae30\uac70\ub098 \ubc84\ud2bc\uc744 \uae30\ub300\ud558\uba74\uc11c, \uc0c1\uc9d5\ub4e4\uc774 \uc815\ub82c\ub418\uae30\ub97c \uae30\ub300\ud558\uba70 \uae30\ub2e4\ub9ac\uace0, \ud070 \uc131\uacf5\uc744 \uae30\ub300\ud558\uba74\uc11c \uae30\ub2e4\ub9ac\ub294 \uac83\uc740 \uc804 \uc138\uacc4\uc801\uc778 \uacbd\ud5d8\uc774\ub2e4.\uc628\ub77c\uc778 \ub3c4\ubc15\uc7a5\uc758 \ucd9c\ud604\uc73c\ub85c, \uc790\ud310\uae30\uc758 \uc0ac\uc6a9 \uac00\ub2a5\uc131\uc774 \ub610\ud55c \ud655\ub300\ub418\uc5c8\uace0, \uac1c\uc778\ub4e4\uc774 \uc790\uc2e0\ub4e4\uc774 \uc18c\uc720\ud55c \uc9d1\uc5d0\uc11c \uc2ac\ub86f \uac8c\uc784\uc744 \uc990\uae38 \uc218 \uc788\uac8c \ub418\uc5c8\ub2e4.\uc774 \ud3ec\uc2a4\ud2b8, \uc6b0\ub9ac\ub294 \uc77c\uccb4\uc758 \ube44\uc6a9\uc774 \uc5c6\ub294 \uc2ac\ub86f \uba38\uc2e0\uc758 \uc138\uacc4 \ud0d0\ud5d8\ud558\uba70, \uadf8\uac83\ub4e4\uc774 […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[1],"tags":[],"class_list":["post-3510","post","type-post","status-publish","format-standard","hentry","category-blog"],"_links":{"self":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/3510","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/comments?post=3510"}],"version-history":[{"count":1,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/3510\/revisions"}],"predecessor-version":[{"id":3511,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/3510\/revisions\/3511"}],"wp:attachment":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/media?parent=3510"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/categories?post=3510"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/tags?post=3510"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}