{"id":61,"date":"2025-05-19T17:11:40","date_gmt":"2025-05-19T08:11:40","guid":{"rendered":"http:\/\/ohsland.kr\/?p=61"},"modified":"2025-05-19T17:11:40","modified_gmt":"2025-05-19T08:11:40","slug":"%ec%9b%8c%eb%93%9c%ed%94%84%eb%a0%88%ec%8a%a4-%ec%9e%90%eb%8f%99-%ec%82%ac%ec%9d%b4%ed%8a%b8%eb%a7%b5-%ec%83%9d%ec%84%b1%ea%b8%b0-functions-php%ec%97%90-%ec%b6%94%ea%b0%80","status":"publish","type":"post","link":"https:\/\/ohsland.kr\/?p=61","title":{"rendered":"\uc6cc\ub4dc\ud504\ub808\uc2a4 \uc790\ub3d9 \uc0ac\uc774\ud2b8\ub9f5 \uc0dd\uc131\uae30 (functions.php\uc5d0 \ucd94\uac00)"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\ubaa9\ud45c<\/h2>\n\n\n\n<p><code>wp_insert_post<\/code>, <code>save_post<\/code>, <code>deleted_post<\/code> \ub4f1 \uc6cc\ub4dc\ud504\ub808\uc2a4\uc758 <strong>\ud6c5(hook)<\/strong> \uc744 \uc774\uc6a9\ud574, \ucf58\ud150\uce20\uac00 \ubcc0\uacbd\ub420 \ub54c\ub9c8\ub2e4 \uc790\ub3d9\uc73c\ub85c <code>sitemap.xml<\/code>\uc744 \ud30c\uc77c\ub85c <strong>\uc790\ub3d9 \uc0dd\uc131<\/strong>\ud558\ub3c4\ub85d \ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. sitemap.xml \uc790\ub3d9 \uc0dd\uc131 PHP \ud568\uc218 \ub9cc\ub4e4\uae30<\/h2>\n\n\n\n<p><code>functions.php<\/code> \ub610\ub294 \ubcc4\ub3c4 \ud50c\ub7ec\uadf8\uc778\uc5d0 \uc544\ub798 \ucf54\ub4dc\ub97c \ucd94\uac00\ud569\ub2c8\ub2e4:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">php\ubcf5\uc0ac\ud3b8\uc9d1<code>function generate_custom_sitemap() {\n    \/\/ \uc0ac\uc774\ud2b8\ub9f5 \ud30c\uc77c \uacbd\ub85c\n    $sitemap_file = ABSPATH . 'sitemap.xml';\n\n    \/\/ \uc0ac\uc774\ud2b8 \uae30\ubcf8 URL\n    $site_url = get_site_url();\n\n    \/\/ \ud3ec\uc2a4\ud2b8 \ubc0f \ud398\uc774\uc9c0 \uac00\uc838\uc624\uae30\n    $args = array(\n        'post_type'      =&gt; array('post', 'page'),\n        'post_status'    =&gt; 'publish',\n        'posts_per_page' =&gt; -1,\n    );\n\n    $query = new WP_Query($args);\n\n    \/\/ \uc0ac\uc774\ud2b8\ub9f5 \uc2dc\uc791\n    $sitemap = '&lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;' . PHP_EOL;\n    $sitemap .= '&lt;urlset xmlns=\"http:\/\/www.sitemaps.org\/schemas\/sitemap\/0.9\"&gt;' . PHP_EOL;\n\n    if ($query-&gt;have_posts()) {\n        while ($query-&gt;have_posts()) {\n            $query-&gt;the_post();\n            $url = get_permalink();\n            $lastmod = get_the_modified_time('Y-m-d\\TH:i:sP');\n\n            $sitemap .= \"  &lt;url&gt;\\n\";\n            $sitemap .= \"    &lt;loc&gt;{$url}&lt;\/loc&gt;\\n\";\n            $sitemap .= \"    &lt;lastmod&gt;{$lastmod}&lt;\/lastmod&gt;\\n\";\n            $sitemap .= \"    &lt;changefreq&gt;weekly&lt;\/changefreq&gt;\\n\";\n            $sitemap .= \"    &lt;priority&gt;0.8&lt;\/priority&gt;\\n\";\n            $sitemap .= \"  &lt;\/url&gt;\\n\";\n        }\n        wp_reset_postdata();\n    }\n\n    $sitemap .= '&lt;\/urlset&gt;';\n\n    \/\/ \ud30c\uc77c\ub85c \uc800\uc7a5\n    file_put_contents($sitemap_file, $sitemap);\n}\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">2. \uc6cc\ub4dc\ud504\ub808\uc2a4 Hook \uc5d0 \uc5f0\uacb0\ud558\uae30<\/h2>\n\n\n\n<p>\ub2e4\uc74c \ud6c5\ub4e4\uc744 \uc0ac\uc6a9\ud574 \ucf58\ud150\uce20 \ubcc0\uacbd \uc2dc \uc790\ub3d9 \uc2e4\ud589\ub418\ub3c4\ub85d \ud569\ub2c8\ub2e4:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>\/\/ \uc0c8 \uac8c\uc2dc\ubb3c \ucd94\uac00 \ub610\ub294 \uc218\uc815 \uc2dc<br>add_action('save_post', 'generate_custom_sitemap');<br><br>\/\/ \uac8c\uc2dc\ubb3c \uc0ad\uc81c \uc2dc<br>add_action('deleted_post', 'generate_custom_sitemap');<br><\/code><\/pre>\n\n\n\n<p>\uc774 \ud6c5\ub4e4\uc744 \ud1b5\ud574 \uc6cc\ub4dc\ud504\ub808\uc2a4\uc5d0\uc11c \uac8c\uc2dc\ubb3c\uc774 <strong>\uc0dd\uc131\/\uc218\uc815\/\uc0ad\uc81c\ub420 \ub54c\ub9c8\ub2e4<\/strong> <code>sitemap.xml<\/code>\uc774 \uc790\ub3d9\uc73c\ub85c \ub36e\uc5b4\uc368\uc9d1\ub2c8\ub2e4.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">3. \ud37c\ubbf8\uc158 \ud655\uc778<\/h2>\n\n\n\n<p><code>file_put_contents()<\/code> \uac00 <code>ABSPATH . 'sitemap.xml'<\/code> \uc704\uce58\uc5d0 \uc4f8 \uc218 \uc788\uc73c\ub824\uba74 \ud574\ub2f9 \ub514\ub809\ud1a0\ub9ac\uc5d0 \uc6f9 \uc11c\ubc84 \uc4f0\uae30 \uad8c\ud55c\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sudo chown www-data:www-data \/var\/www\/html<br>sudo chmod 755 \/var\/www\/html<br><\/code><\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\uc704 \uc608\uc2dc\ub294 <code>\/var\/www\/html<\/code> \uae30\uc900\uc774\uba70, \uc2e4\uc81c \uc6cc\ub4dc\ud504\ub808\uc2a4 \uc124\uce58 \uacbd\ub85c\uc5d0 \ub9de\uac8c \uc870\uc815\ud558\uc138\uc694.<\/p>\n<\/blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">4. Google Search Console \uc81c\ucd9c<\/h2>\n\n\n\n<p><code>https:\/\/mydomain.com\/sitemap.xml<\/code> \ub85c \uc811\uadfc \uac00\ub2a5\ud55c\uc9c0 \ud655\uc778\ud558\uace0, <a>Google Search Console<\/a>\uc5d0 \uc774 URL\uc744 \uc81c\ucd9c\ud558\uc138\uc694.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\uacb0\uacfc<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\uc6cc\ub4dc\ud504\ub808\uc2a4\uc5d0\uc11c \uae00\uc744 \uc4f0\uac70\ub098 \uc9c0\uc6b8 \ub54c\ub9c8\ub2e4 sitemap.xml\uc774 \uc790\ub3d9 \uac31\uc2e0\ub429\ub2c8\ub2e4.<\/li>\n\n\n\n<li>\uad6c\uae00\ubd07\uc774 \uc7ac\ubc29\ubb38 \uc2dc \ud56d\uc0c1 \ucd5c\uc2e0 \uc815\ubcf4\ub97c \uac00\uc838\uac00\uac8c \ub429\ub2c8\ub2e4.<\/li>\n\n\n\n<li>\ubcc4\ub3c4 \ud50c\ub7ec\uadf8\uc778 \uc5c6\uc774\ub3c4 \uc644\uc804\ud788 \uc790\ub3d9\ud654\ub41c \uc0ac\uc774\ud2b8\ub9f5 \uc0dd\uc131\uc774 \uac00\ub2a5\ud569\ub2c8\ub2e4.<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>wp_insert_post, save_post, deleted_post \ub4f1 \uc6cc\ub4dc\ud504\ub808\uc2a4\uc758 \ud6c5(hook) \uc744 \uc774\uc6a9\ud574, \ucf58\ud150\uce20\uac00 \ubcc0\uacbd\ub420 \ub54c\ub9c8\ub2e4 \uc790\ub3d9\uc73c\ub85c sitemap.xml\uc744 \ud30c\uc77c\ub85c \uc790\ub3d9 \uc0dd\uc131\ud558\ub3c4\ub85d \ud569\ub2c8\ub2e4.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[135,137,138,122,134,125,136,139,133],"class_list":{"0":"post-61","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-webserver","7":"tag-sitemap-xml","10":"tag-122","11":"tag-134","12":"tag-125","13":"tag-136","14":"tag-139","15":"tag-133"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\uc6cc\ub4dc\ud504\ub808\uc2a4 \uc790\ub3d9 \uc0ac\uc774\ud2b8\ub9f5 \uc0dd\uc131\uae30 (functions.php\uc5d0 \ucd94\uac00) - Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c<\/title>\n<meta name=\"description\" content=\"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c -\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ohsland.kr\/?p=61\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\uc6cc\ub4dc\ud504\ub808\uc2a4 \uc790\ub3d9 \uc0ac\uc774\ud2b8\ub9f5 \uc0dd\uc131\uae30 (functions.php\uc5d0 \ucd94\uac00) - Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c\" \/>\n<meta property=\"og:description\" content=\"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c -\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ohsland.kr\/?p=61\" \/>\n<meta property=\"og:site_name\" content=\"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/profile.php?id=100092592720482\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/profile.php?id=100092592720482\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-19T08:11:40+00:00\" \/>\n<meta name=\"author\" content=\"Oh Kwangho\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Oh Kwangho\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/ohsland.kr\/?p=61#article\",\"isPartOf\":{\"@id\":\"https:\/\/ohsland.kr\/?p=61\"},\"author\":{\"name\":\"Oh Kwangho\",\"@id\":\"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90\"},\"headline\":\"\uc6cc\ub4dc\ud504\ub808\uc2a4 \uc790\ub3d9 \uc0ac\uc774\ud2b8\ub9f5 \uc0dd\uc131\uae30 (functions.php\uc5d0 \ucd94\uac00)\",\"datePublished\":\"2025-05-19T08:11:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/ohsland.kr\/?p=61\"},\"wordCount\":16,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90\"},\"keywords\":[\"sitemap.xml\",\"sitemap.xml\uc0dd\uc131\",\"sitemap.xml\uc790\ub3d9\uc0dd\uc131\",\"\uac80\uc0c9\uc5d4\uc9c4\ub4f1\ub85d\",\"\uac80\uc0c9\uc5d4\uc9c4\uc0ac\uc774\ud2b8\ub4f1\ub85d\",\"\uad6c\uae00\uac80\uc0c9\ub4f1\ub85d\",\"\uc0ac\uc774\ud2b8\ub9f5\uc0dd\uc131\",\"\uc0ac\uc774\ud2b8\ub9f5\uc790\ub3d9\uc0dd\uc131\",\"\uc6cc\ub4dc\ud504\ub808\uc2a4\uc0ac\uc774\ud2b8\ub9f5\"],\"articleSection\":[\"Webserver\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/ohsland.kr\/?p=61#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ohsland.kr\/?p=61\",\"url\":\"https:\/\/ohsland.kr\/?p=61\",\"name\":\"\uc6cc\ub4dc\ud504\ub808\uc2a4 \uc790\ub3d9 \uc0ac\uc774\ud2b8\ub9f5 \uc0dd\uc131\uae30 (functions.php\uc5d0 \ucd94\uac00) - Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c\",\"isPartOf\":{\"@id\":\"https:\/\/ohsland.kr\/#website\"},\"datePublished\":\"2025-05-19T08:11:40+00:00\",\"description\":\"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c -\",\"breadcrumb\":{\"@id\":\"https:\/\/ohsland.kr\/?p=61#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/ohsland.kr\/?p=61\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/ohsland.kr\/?p=61#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/ohsland.kr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\uc6cc\ub4dc\ud504\ub808\uc2a4 \uc790\ub3d9 \uc0ac\uc774\ud2b8\ub9f5 \uc0dd\uc131\uae30 (functions.php\uc5d0 \ucd94\uac00)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/ohsland.kr\/#website\",\"url\":\"https:\/\/ohsland.kr\/\",\"name\":\"OhsLAND \uc9c0\uc2dd\ubcf4\uad00\uc18c\",\"description\":\"\uc811\ud574\ubcf8 \ub2e4\uc591\ud55c \uc9c0\uc2dd\uc744 \uc815\ub9ac\ud568.\",\"publisher\":{\"@id\":\"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90\"},\"alternateName\":\"OhsLAND \uc9c0\uc2dd\ubcf4\uad00\uc18c\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/ohsland.kr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90\",\"name\":\"Oh Kwangho\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ohsland.kr\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/ohsland.kr\/wp-content\/uploads\/2025\/05\/storeCI.png\",\"contentUrl\":\"https:\/\/ohsland.kr\/wp-content\/uploads\/2025\/05\/storeCI.png\",\"width\":610,\"height\":609,\"caption\":\"Oh Kwangho\"},\"logo\":{\"@id\":\"https:\/\/ohsland.kr\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/ohsland.kr\",\"https:\/\/www.facebook.com\/profile.php?id=100092592720482\",\"https:\/\/www.instagram.com\/ohslandcom\/\",\"https:\/\/www.youtube.com\/channel\/UCspZ3lvUc7OV8mTx8txqbEw\"],\"url\":\"https:\/\/ohsland.kr\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\uc6cc\ub4dc\ud504\ub808\uc2a4 \uc790\ub3d9 \uc0ac\uc774\ud2b8\ub9f5 \uc0dd\uc131\uae30 (functions.php\uc5d0 \ucd94\uac00) - Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c","description":"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c -","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:\/\/ohsland.kr\/?p=61","og_locale":"en_US","og_type":"article","og_title":"\uc6cc\ub4dc\ud504\ub808\uc2a4 \uc790\ub3d9 \uc0ac\uc774\ud2b8\ub9f5 \uc0dd\uc131\uae30 (functions.php\uc5d0 \ucd94\uac00) - Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c","og_description":"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c -","og_url":"https:\/\/ohsland.kr\/?p=61","og_site_name":"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c","article_publisher":"https:\/\/www.facebook.com\/profile.php?id=100092592720482","article_author":"https:\/\/www.facebook.com\/profile.php?id=100092592720482","article_published_time":"2025-05-19T08:11:40+00:00","author":"Oh Kwangho","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oh Kwangho","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ohsland.kr\/?p=61#article","isPartOf":{"@id":"https:\/\/ohsland.kr\/?p=61"},"author":{"name":"Oh Kwangho","@id":"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90"},"headline":"\uc6cc\ub4dc\ud504\ub808\uc2a4 \uc790\ub3d9 \uc0ac\uc774\ud2b8\ub9f5 \uc0dd\uc131\uae30 (functions.php\uc5d0 \ucd94\uac00)","datePublished":"2025-05-19T08:11:40+00:00","mainEntityOfPage":{"@id":"https:\/\/ohsland.kr\/?p=61"},"wordCount":16,"commentCount":0,"publisher":{"@id":"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90"},"keywords":["sitemap.xml","sitemap.xml\uc0dd\uc131","sitemap.xml\uc790\ub3d9\uc0dd\uc131","\uac80\uc0c9\uc5d4\uc9c4\ub4f1\ub85d","\uac80\uc0c9\uc5d4\uc9c4\uc0ac\uc774\ud2b8\ub4f1\ub85d","\uad6c\uae00\uac80\uc0c9\ub4f1\ub85d","\uc0ac\uc774\ud2b8\ub9f5\uc0dd\uc131","\uc0ac\uc774\ud2b8\ub9f5\uc790\ub3d9\uc0dd\uc131","\uc6cc\ub4dc\ud504\ub808\uc2a4\uc0ac\uc774\ud2b8\ub9f5"],"articleSection":["Webserver"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ohsland.kr\/?p=61#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ohsland.kr\/?p=61","url":"https:\/\/ohsland.kr\/?p=61","name":"\uc6cc\ub4dc\ud504\ub808\uc2a4 \uc790\ub3d9 \uc0ac\uc774\ud2b8\ub9f5 \uc0dd\uc131\uae30 (functions.php\uc5d0 \ucd94\uac00) - Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c","isPartOf":{"@id":"https:\/\/ohsland.kr\/#website"},"datePublished":"2025-05-19T08:11:40+00:00","description":"Ohsland \uc758 \uc9c0\uc2dd\ubcf4\uad00\uc18c -","breadcrumb":{"@id":"https:\/\/ohsland.kr\/?p=61#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ohsland.kr\/?p=61"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/ohsland.kr\/?p=61#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ohsland.kr\/"},{"@type":"ListItem","position":2,"name":"\uc6cc\ub4dc\ud504\ub808\uc2a4 \uc790\ub3d9 \uc0ac\uc774\ud2b8\ub9f5 \uc0dd\uc131\uae30 (functions.php\uc5d0 \ucd94\uac00)"}]},{"@type":"WebSite","@id":"https:\/\/ohsland.kr\/#website","url":"https:\/\/ohsland.kr\/","name":"OhsLAND \uc9c0\uc2dd\ubcf4\uad00\uc18c","description":"\uc811\ud574\ubcf8 \ub2e4\uc591\ud55c \uc9c0\uc2dd\uc744 \uc815\ub9ac\ud568.","publisher":{"@id":"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90"},"alternateName":"OhsLAND \uc9c0\uc2dd\ubcf4\uad00\uc18c","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ohsland.kr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/ohsland.kr\/#\/schema\/person\/a76fdfaa7ddd45b19d23d41094957b90","name":"Oh Kwangho","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ohsland.kr\/#\/schema\/person\/image\/","url":"https:\/\/ohsland.kr\/wp-content\/uploads\/2025\/05\/storeCI.png","contentUrl":"https:\/\/ohsland.kr\/wp-content\/uploads\/2025\/05\/storeCI.png","width":610,"height":609,"caption":"Oh Kwangho"},"logo":{"@id":"https:\/\/ohsland.kr\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/ohsland.kr","https:\/\/www.facebook.com\/profile.php?id=100092592720482","https:\/\/www.instagram.com\/ohslandcom\/","https:\/\/www.youtube.com\/channel\/UCspZ3lvUc7OV8mTx8txqbEw"],"url":"https:\/\/ohsland.kr\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/ohsland.kr\/index.php?rest_route=\/wp\/v2\/posts\/61","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ohsland.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ohsland.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ohsland.kr\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ohsland.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=61"}],"version-history":[{"count":1,"href":"https:\/\/ohsland.kr\/index.php?rest_route=\/wp\/v2\/posts\/61\/revisions"}],"predecessor-version":[{"id":62,"href":"https:\/\/ohsland.kr\/index.php?rest_route=\/wp\/v2\/posts\/61\/revisions\/62"}],"wp:attachment":[{"href":"https:\/\/ohsland.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=61"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ohsland.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=61"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ohsland.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=61"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}