{"id":40137,"date":"2024-11-03T04:11:46","date_gmt":"2024-11-03T04:11:46","guid":{"rendered":"https:\/\/atmokpo.com\/w\/?p=40137"},"modified":"2024-11-26T06:40:00","modified_gmt":"2024-11-26T06:40:00","slug":"23-%ea%b3%a0%ea%b8%89-%ea%b8%b0%eb%8a%a5-%ea%b5%ac%ed%98%84-%ec%bb%a4%ec%8a%a4%ed%85%80-%ec%9c%84%ec%a0%af%ea%b3%bc-%ec%87%bc%ed%8a%b8%ec%bd%94%eb%93%9c-%eb%a7%8c%eb%93%a4%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/40137\/","title":{"rendered":"23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30"},"content":{"rendered":"<p><body><\/p>\n<p>\n        \uc6cc\ub4dc\ud504\ub808\uc2a4\ub294 \uadf8 \uc720\uc5f0\uc131\uacfc \ud655\uc7a5\uc131 \ub355\ubd84\uc5d0 \ub9ce\uc740 \uac1c\ubc1c\uc790\ub4e4\uc774 \uc120\ud638\ud558\ub294 \ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4. \uc774\ubc88 \uae00\uc5d0\uc11c\ub294<br \/>\n        \uc6cc\ub4dc\ud504\ub808\uc2a4\uc758 \uace0\uae09 \uae30\ub2a5 \uad6c\ud604\uc5d0 \ub300\ud574 \uc0b4\ud3b4\ubcf4\uba70, \ucee4\uc2a4\ud140 \uc704\uc82f(custom widget)\uacfc \uc1fc\ud2b8\ucf54\ub4dc(shortcode)\ub97c<br \/>\n        \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uae4a\uc774 \uc788\uac8c \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h2>1. \ucee4\uc2a4\ud140 \uc704\uc82f \ub9cc\ub4e4\uae30<\/h2>\n<p>\n        \uc704\uc82f\uc740 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\uc758 \ud55c \ubd80\ubd84\uc73c\ub85c, \uc77c\ubc18\uc801\uc73c\ub85c \uc0ac\uc774\ub4dc\ubc14 \ub610\ub294 \uae30\ud0c0 \uc704\uc82f \uc601\uc5ed\uc5d0\uc11c<br \/>\n        \ud45c\uc2dc\ub429\ub2c8\ub2e4. \uc6cc\ub4dc\ud504\ub808\uc2a4\uc5d0\uc11c \ucee4\uc2a4\ud140 \uc704\uc82f\uc744 \ub9cc\ub4e4\ub824\uba74<br \/>\n        <code>WP_Widget<\/code> \ud074\ub798\uc2a4\ub97c \uc0c1\uc18d\ubc1b\uc544 \uc0c8\ub85c\uc6b4 \ud074\ub798\uc2a4\ub97c \uc815\uc758\ud574\uc57c \ud569\ub2c8\ub2e4.\n    <\/p>\n<h3>1.1. \ucee4\uc2a4\ud140 \uc704\uc82f \ud074\ub798\uc2a4 \uc815\uc758\ud558\uae30<\/h3>\n<p>\n        \uae30\ubcf8\uc801\uc778 \uc704\uc82f \ud074\ub798\uc2a4\ub97c \uc815\uc758\ud558\ub294 \uc608\uc81c\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<pre>\n<code>\nclass My_Custom_Widget extends WP_Widget {\n    function __construct() {\n        parent::__construct(\n            'my_custom_widget', \/\/ ID\n            __('My Custom Widget', 'text_domain'), \/\/ \uc774\ub984\n            array('description' =&gt; __('A Custom Widget Example', 'text_domain')) \/\/ \uc635\uc158\n        );\n    }\n\n    public function widget($args, $instance) {\n        \/\/ \uc704\uc82f\uc758 \ud504\ub860\ud2b8\uc5d4\ub4dc \ucd9c\ub825\n        echo $args['before_widget'];\n        if (!empty($instance['title'])) {\n            echo $args['before_title'] . apply_filters('widget_title', $instance['title']) . $args['after_title'];\n        }\n        \/\/ \uc5ec\uae30\uc5d0 \uc704\uc82f\uc758 \ub0b4\uc6a9\uc744 \ucd9c\ub825\ud569\ub2c8\ub2e4.\n        echo __('Hello, World!', 'text_domain');\n        echo $args['after_widget'];\n    }\n\n    public function form($instance) {\n        \/\/ \uad00\ub9ac\uc790 \ub300\uc2dc\ubcf4\ub4dc\uc5d0\uc11c \uc704\uc82f\uc758 \uc124\uc815 \uc591\uc2dd\n        $title = !empty($instance['title']) ? $instance['title'] : esc_html__('New title', 'text_domain');\n        ?&gt;\n        <p>\n            <label for=\"&lt;?php echo esc_attr($this-&gt;get_field_id('title')); ?&gt;\">\n                <?php esc_attr_e('Title:', 'text_domain'); ?>\n            <\/label>\n            <input class=\"widefat\" id=\"&lt;?php echo esc_attr($this-&gt;get_field_id('title')); ?&gt;\" name=\"&lt;?php echo esc_attr($this-&gt;get_field_name('title')); ?&gt;\" type=\"text\" value=\"&lt;?php echo esc_attr($title); ?&gt;\"\/>\n        <\/p>\n        <?php\n    }\n\n    public function update($new_instance, $old_instance) {\n        \/\/ \uc704\uc82f \uc124\uc815 \uc800\uc7a5\n        $instance = array();\n        $instance['title'] = (!empty($new_instance['title'])) ? strip_tags($new_instance['title']) : '';\n\n        return $instance;\n    }\n}\n<\/code>\n    <\/code><\/pre>\n<h3>1.2. \uc704\uc82f \ub4f1\ub85d\ud558\uae30<\/h3>\n<p>\n        \uc704\uc82f \ud074\ub798\uc2a4\ub97c \uc815\uc758\ud55c \ud6c4\uc5d0\ub294 <code>functions.php<\/code> \ud30c\uc77c\uc5d0\uc11c \uc704\uc82f\uc744 \ub4f1\ub85d\ud574\uc57c \ud569\ub2c8\ub2e4.<br \/>\n        \ub2e4\uc74c\uc758 \ucf54\ub4dc\ub97c \ucd94\uac00\ud558\uc5ec \uc704\uc82f\uc744 \ub4f1\ub85d\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<pre>\n<code>\nfunction register_my_custom_widget() {\n    register_widget('My_Custom_Widget');\n}\nadd_action('widgets_init', 'register_my_custom_widget');\n<\/code>\n    <\/pre>\n<p>\n        \uc704 \ucf54\ub4dc\ub97c \ucd94\uac00\ud558\uba74 \uad00\ub9ac\uc790 \ub300\uc2dc\ubcf4\ub4dc\uc758 &#8216;\uc704\uc82f&#8217; \uc139\uc158\uc5d0\uc11c &#8216;My Custom Widget&#8217;\uc744<br \/>\n        \uc0ac\uc6a9\ud560 \uc218 \uc788\uac8c \ub429\ub2c8\ub2e4.\n    <\/p>\n<h2>2. \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30<\/h2>\n<p>\n        \uc1fc\ud2b8\ucf54\ub4dc\ub294 \uac8c\uc2dc\ubb3c\uc774\ub098 \ud398\uc774\uc9c0\uc758 \ucf58\ud150\uce20 \ub0b4\uc5d0 \uac04\ub2e8\ud55c \ubb38\ubc95\uc744 \ud1b5\ud574 \ubcf5\uc7a1\ud55c \uae30\ub2a5\uc744 \ube60\ub974\uac8c \uc0bd\uc785\ud560 \uc218<br \/>\n        \uc788\uac8c \ud574\uc8fc\ub294 \uc6cc\ub4dc\ud504\ub808\uc2a4\uc758 \uae30\ub2a5\uc785\ub2c8\ub2e4. \uc1fc\ud2b8\ucf54\ub4dc\uc758 \uad6c\uc870\ub294 \uc0c1\ub2f9\ud788 \uc720\uc5f0\ud558\uba70, \ud544\uc694\uc5d0 \ub530\ub77c \ub2e4\uc591\ud55c<br \/>\n        \ub9e4\uac1c\ubcc0\uc218\ub97c \ubc1b\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h3>2.1. \uae30\ubcf8 \uc1fc\ud2b8\ucf54\ub4dc \uc0dd\uc131\ud558\uae30<\/h3>\n<p>\n        \uae30\ubcf8\uc801\uc778 \uc1fc\ud2b8\ucf54\ub4dc\ub294 \ub2e4\uc74c\uacfc \uac19\uc774 \uc0dd\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<pre>\n<code>\nfunction my_custom_shortcode($atts) {\n    \/\/ \uc1fc\ud2b8\ucf54\ub4dc\uc758 \uae30\ubcf8 \uc18d\uc131 \uc815\uc758\n    $atts = shortcode_atts(array(\n        'title' =&gt; '\uae30\ubcf8 \uc81c\ubaa9',\n        'content' =&gt; '\uae30\ubcf8 \ub0b4\uc6a9'\n    ), $atts);\n\n    \/\/ \uc1fc\ud2b8\ucf54\ub4dc\ub85c \ucd9c\ub825\ud560 HTML\n    return '<div class=\"my-custom-shortcode\">\n                <h2>' . esc_html($atts['title']) . '<\/h2>\n                <p>' . esc_html($atts['content']) . '<\/p>\n            <\/div>';\n}\nadd_shortcode('my_shortcode', 'my_custom_shortcode');\n<\/code>\n    <\/pre>\n<h3>2.2. \uc1fc\ud2b8\ucf54\ub4dc \uc0ac\uc6a9\ud558\uae30<\/h3>\n<p>\n        \uc774\uc81c \uc0dd\uc131\ud55c \uc1fc\ud2b8\ucf54\ub4dc\ub97c \ud398\uc774\uc9c0\ub098 \ud3ec\uc2a4\ud2b8 \ub0b4\uc5d0\uc11c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\uc74c\uacfc \uac19\uc774 \uc0bd\uc785\ud558\uba74<br \/>\n        \ub429\ub2c8\ub2e4:\n    <\/p>\n<pre>\n<code>\n[my_shortcode title=\"\ud658\uc601\ud569\ub2c8\ub2e4!\" content=\"\uc5ec\uae30\uc5d0 \ucee4\uc2a4\ud140 \ucf58\ud150\uce20\ub97c \uc785\ub825\ud558\uc138\uc694.\"]\n<\/code>\n    <\/pre>\n<h3>2.3. \ub9e4\uac1c\ubcc0\uc218\ub97c \ubc1b\uc544\uc11c \uc0ac\uc6a9\ud558\uae30<\/h3>\n<p>\n        \uc0ac\uc6a9\uc790\uac00 \uc81c\uacf5\ud558\ub294 \ub9e4\uac1c\ubcc0\uc218\uc5d0 \ub530\ub77c \ub2e4\uc591\ud55c \ub0b4\uc6a9\uc744 \ucd9c\ub825\ud558\ub824\uba74<br \/>\n        <code>shortcode_atts<\/code> \ud568\uc218\ub97c \ud65c\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc704\uc758 \uc608\uc81c\uc640 \uac19\uc774<br \/>\n        \uae30\ubcf8\uac12\uc744 \uc124\uc815\ud574\ub450\uba74 \uc0ac\uc6a9\uc790 \uce5c\ud654\uc801\uc778 \uc1fc\ud2b8\ucf54\ub4dc\ub97c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h2>3. \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \uc0ac\uc774\uc758 \uc5f0\uacc4<\/h2>\n<p>\n        \ucee4\uc2a4\ud140 \uc704\uc82f\uc740 \uc0ac\uc6a9\uc790\uc640\uc758 \uc0c1\ud638\uc791\uc6a9\uc5d0 \uac15\uc810\uc744 \uac00\uc9c0\uba70, \uc1fc\ud2b8\ucf54\ub4dc\ub294 \uc0ac\uc6a9\uc790\uc5d0\uac8c \ud544\uc694\ud55c<br \/>\n        \ucf58\ud150\uce20 \uc7ac\uc0ac\uc6a9\uc131\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \ub54c\ub54c\ub85c, \uc774\ub7ec\ud55c \ub450 \uae30\ub2a5\uc744 \uacb0\ud569\ud558\uc5ec \ub354 \ub9ce\uc740<br \/>\n        \ud6a8\uacfc\ub97c \uc5bb\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h3>3.1. \uc704\uc82f \ub0b4\uc5d0\uc11c \uc1fc\ud2b8\ucf54\ub4dc \uc0ac\uc6a9\ud558\uae30<\/h3>\n<p>\n        \uc704\uc82f\uc5d0\uc11c \uc1fc\ud2b8\ucf54\ub4dc\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\ub3c4\ub85d \ud558\ub824\uba74 <code>do_shortcode<\/code> \ud568\uc218\ub97c<br \/>\n        \uc0ac\uc6a9\ud558\uc5ec \uc704\uc82f\uc758 \ucd9c\ub825 \uc0c1\uc5d0\uc11c \uc1fc\ud2b8\ucf54\ub4dc\ub97c \ud638\ucd9c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<pre>\n<code>\npublic function widget($args, $instance) {\n    echo $args['before_widget'];\n    if (!empty($instance['title'])) {\n        echo $args['before_title'] . apply_filters('widget_title', $instance['title']) . $args['after_title'];\n    }\n    echo do_shortcode('[my_shortcode title=\"\uc704\uc82f\uc5d0\uc11c\uc758 \uc1fc\ud2b8\ucf54\ub4dc\" content=\"\uc5ec\uae30\uc5d0 \uc704\uc82f \ub0b4\uc6a9\uc744 \ucd94\uac00\ud558\uc138\uc694.\"]');\n    echo $args['after_widget'];\n}\n<\/code>\n    <\/pre>\n<h2>4. \ub9c8\ubb34\ub9ac<\/h2>\n<p>\n        \uc774\ubc88 \ud3ec\uc2a4\ud2b8\uc5d0\uc11c\ub294 \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uc558\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c<br \/>\n        \uae30\ub2a5\ub4e4\uc740 \uc6cc\ub4dc\ud504\ub808\uc2a4 \ud14c\ub9c8\uc640 \ud50c\ub7ec\uadf8\uc778\uc744 \uac1c\ubc1c\ud558\ub294 \uac15\ub825\ud55c \ub3c4\uad6c\uac00 \ub429\ub2c8\ub2e4. \ucfe0\uc2a4\ud140 \uc704\uc82f\uc774<br \/>\n        \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\uc758 \uc694\uc18c\ub85c\uc11c \uae30\ub2a5\ud558\ub294 \ubc18\uba74, \uc1fc\ud2b8\ucf54\ub4dc\ub294 \ucf58\ud150\uce20 \ub0b4\uc5d0\uc11c \ub2e4\uae30\ub2a5\uc744<br \/>\n        \uc81c\uacf5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc801\uc808\ud788 \ud65c\uc6a9\ud568\uc73c\ub85c\uc368 \ub354\uc6b1 \uc720\uc6a9\ud55c \uc6f9\uc0ac\uc774\ud2b8\ub97c \uad6c\ucd95\ud560 \uc218 \uc788\uc744 \uac83\uc785\ub2c8\ub2e4.\n    <\/p>\n<p>\n        \uc55e\uc73c\ub85c\ub3c4 \ub2e4\uc591\ud55c \uc6cc\ub4dc\ud504\ub808\uc2a4 \uac1c\ubc1c \uae30\ubc95\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uba70, \ud65c\uc6a9\ud560 \uc218 \uc788\ub294 \uc720\uc6a9\ud55c \ub3c4\uad6c\uac00<br \/>\n        \ub418\uc5c8\uc73c\uba74 \uc88b\uaca0\uc2b5\ub2c8\ub2e4. \uac10\uc0ac\ud569\ub2c8\ub2e4!\n    <\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc6cc\ub4dc\ud504\ub808\uc2a4\ub294 \uadf8 \uc720\uc5f0\uc131\uacfc \ud655\uc7a5\uc131 \ub355\ubd84\uc5d0 \ub9ce\uc740 \uac1c\ubc1c\uc790\ub4e4\uc774 \uc120\ud638\ud558\ub294 \ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4. \uc774\ubc88 \uae00\uc5d0\uc11c\ub294 \uc6cc\ub4dc\ud504\ub808\uc2a4\uc758 \uace0\uae09 \uae30\ub2a5 \uad6c\ud604\uc5d0 \ub300\ud574 \uc0b4\ud3b4\ubcf4\uba70, \ucee4\uc2a4\ud140 \uc704\uc82f(custom widget)\uacfc \uc1fc\ud2b8\ucf54\ub4dc(shortcode)\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uae4a\uc774 \uc788\uac8c \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ucee4\uc2a4\ud140 \uc704\uc82f \ub9cc\ub4e4\uae30 \uc704\uc82f\uc740 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\uc758 \ud55c \ubd80\ubd84\uc73c\ub85c, \uc77c\ubc18\uc801\uc73c\ub85c \uc0ac\uc774\ub4dc\ubc14 \ub610\ub294 \uae30\ud0c0 \uc704\uc82f \uc601\uc5ed\uc5d0\uc11c \ud45c\uc2dc\ub429\ub2c8\ub2e4. \uc6cc\ub4dc\ud504\ub808\uc2a4\uc5d0\uc11c \ucee4\uc2a4\ud140 \uc704\uc82f\uc744 \ub9cc\ub4e4\ub824\uba74 WP_Widget \ud074\ub798\uc2a4\ub97c \uc0c1\uc18d\ubc1b\uc544 \uc0c8\ub85c\uc6b4 \ud074\ub798\uc2a4\ub97c \uc815\uc758\ud574\uc57c \ud569\ub2c8\ub2e4. 1.1. &hellip; <a href=\"https:\/\/atmokpo.com\/w\/40137\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[207],"tags":[],"class_list":["post-40137","post","type-post","status-publish","format-standard","hentry","category-207"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/40137\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uc6cc\ub4dc\ud504\ub808\uc2a4\ub294 \uadf8 \uc720\uc5f0\uc131\uacfc \ud655\uc7a5\uc131 \ub355\ubd84\uc5d0 \ub9ce\uc740 \uac1c\ubc1c\uc790\ub4e4\uc774 \uc120\ud638\ud558\ub294 \ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4. \uc774\ubc88 \uae00\uc5d0\uc11c\ub294 \uc6cc\ub4dc\ud504\ub808\uc2a4\uc758 \uace0\uae09 \uae30\ub2a5 \uad6c\ud604\uc5d0 \ub300\ud574 \uc0b4\ud3b4\ubcf4\uba70, \ucee4\uc2a4\ud140 \uc704\uc82f(custom widget)\uacfc \uc1fc\ud2b8\ucf54\ub4dc(shortcode)\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uae4a\uc774 \uc788\uac8c \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ucee4\uc2a4\ud140 \uc704\uc82f \ub9cc\ub4e4\uae30 \uc704\uc82f\uc740 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\uc758 \ud55c \ubd80\ubd84\uc73c\ub85c, \uc77c\ubc18\uc801\uc73c\ub85c \uc0ac\uc774\ub4dc\ubc14 \ub610\ub294 \uae30\ud0c0 \uc704\uc82f \uc601\uc5ed\uc5d0\uc11c \ud45c\uc2dc\ub429\ub2c8\ub2e4. \uc6cc\ub4dc\ud504\ub808\uc2a4\uc5d0\uc11c \ucee4\uc2a4\ud140 \uc704\uc82f\uc744 \ub9cc\ub4e4\ub824\uba74 WP_Widget \ud074\ub798\uc2a4\ub97c \uc0c1\uc18d\ubc1b\uc544 \uc0c8\ub85c\uc6b4 \ud074\ub798\uc2a4\ub97c \uc815\uc758\ud574\uc57c \ud569\ub2c8\ub2e4. 1.1. &hellip; \ub354 \ubcf4\uae30 &quot;23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/40137\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-03T04:11:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:40:00+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/40137\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/40137\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30\",\"datePublished\":\"2024-11-03T04:11:46+00:00\",\"dateModified\":\"2024-11-26T06:40:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/40137\/\"},\"wordCount\":6,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"\uc6cc\ub4dc\ud504\ub808\uc2a4\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/40137\/\",\"url\":\"https:\/\/atmokpo.com\/w\/40137\/\",\"name\":\"23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-03T04:11:46+00:00\",\"dateModified\":\"2024-11-26T06:40:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/40137\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/40137\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/40137\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/40137\/","og_locale":"ko_KR","og_type":"article","og_title":"23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uc6cc\ub4dc\ud504\ub808\uc2a4\ub294 \uadf8 \uc720\uc5f0\uc131\uacfc \ud655\uc7a5\uc131 \ub355\ubd84\uc5d0 \ub9ce\uc740 \uac1c\ubc1c\uc790\ub4e4\uc774 \uc120\ud638\ud558\ub294 \ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4. \uc774\ubc88 \uae00\uc5d0\uc11c\ub294 \uc6cc\ub4dc\ud504\ub808\uc2a4\uc758 \uace0\uae09 \uae30\ub2a5 \uad6c\ud604\uc5d0 \ub300\ud574 \uc0b4\ud3b4\ubcf4\uba70, \ucee4\uc2a4\ud140 \uc704\uc82f(custom widget)\uacfc \uc1fc\ud2b8\ucf54\ub4dc(shortcode)\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uae4a\uc774 \uc788\uac8c \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ucee4\uc2a4\ud140 \uc704\uc82f \ub9cc\ub4e4\uae30 \uc704\uc82f\uc740 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\uc758 \ud55c \ubd80\ubd84\uc73c\ub85c, \uc77c\ubc18\uc801\uc73c\ub85c \uc0ac\uc774\ub4dc\ubc14 \ub610\ub294 \uae30\ud0c0 \uc704\uc82f \uc601\uc5ed\uc5d0\uc11c \ud45c\uc2dc\ub429\ub2c8\ub2e4. \uc6cc\ub4dc\ud504\ub808\uc2a4\uc5d0\uc11c \ucee4\uc2a4\ud140 \uc704\uc82f\uc744 \ub9cc\ub4e4\ub824\uba74 WP_Widget \ud074\ub798\uc2a4\ub97c \uc0c1\uc18d\ubc1b\uc544 \uc0c8\ub85c\uc6b4 \ud074\ub798\uc2a4\ub97c \uc815\uc758\ud574\uc57c \ud569\ub2c8\ub2e4. 1.1. &hellip; \ub354 \ubcf4\uae30 \"23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30\"","og_url":"https:\/\/atmokpo.com\/w\/40137\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-03T04:11:46+00:00","article_modified_time":"2024-11-26T06:40:00+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/40137\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/40137\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30","datePublished":"2024-11-03T04:11:46+00:00","dateModified":"2024-11-26T06:40:00+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/40137\/"},"wordCount":6,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["\uc6cc\ub4dc\ud504\ub808\uc2a4"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/40137\/","url":"https:\/\/atmokpo.com\/w\/40137\/","name":"23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-03T04:11:46+00:00","dateModified":"2024-11-26T06:40:00+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/40137\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/40137\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/40137\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"23. \uace0\uae09 \uae30\ub2a5 \uad6c\ud604, \ucee4\uc2a4\ud140 \uc704\uc82f\uacfc \uc1fc\ud2b8\ucf54\ub4dc \ub9cc\ub4e4\uae30"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/40137","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=40137"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/40137\/revisions"}],"predecessor-version":[{"id":40138,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/40137\/revisions\/40138"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=40137"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=40137"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=40137"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}