{"id":968,"date":"2018-03-24T10:55:24","date_gmt":"2018-03-24T03:55:24","guid":{"rendered":"http:\/\/www.yellowweb.id\/blog\/?p=968"},"modified":"2018-03-24T10:55:24","modified_gmt":"2018-03-24T03:55:24","slug":"read-more-link-jquery","status":"publish","type":"post","link":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/","title":{"rendered":"Read more link (jQuery)"},"content":{"rendered":"<p>Mungkin teman-teman bertanya-tanya, bagaimana caranya membuat tombol read-more yang berfungsi untuk memunculkan sebagian tulisan atau teks paragraf, saat membuat sebuah artikel yang cukup panjang.<br \/>\n<!--more--><\/p>\n<p>Caranya tidak terlalu sulit, kita bisa menggunakan jQuery plugin. Kalian bisa download <a href=\"https:\/\/code.jquery.com\/\" rel=\"noopener\" target=\"_blank\">disini<\/a> dan <a href=\"https:\/\/developers.google.com\/speed\/libraries\/\" rel=\"noopener\" target=\"_blank\">disini<\/a>. Untuk plugin yang teman-teman download itu Plugin utama jQuery.<\/p>\n<p>Untuk source codenya, sebagai berikut:<\/p>\n<pre class=\"lang:default decode:true \" >&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n\t&lt;title&gt;Read More With jQuery&lt;\/title&gt;\r\n\t&lt;script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.3.1\/jquery.min.js\"&gt;&lt;\/script&gt;\r\n\t&lt;script type=\"text\/javascript\"&gt;\r\n\t\t$(document).ready(function(){\r\n\t\t\tvar readMoreHTML = $(\".read-more\").html();\r\n\t\t\tvar lessText = readMoreHTML.substr(0, 100);\r\n\r\n\t\t\tif(readMoreHTML.length &gt; 100){\r\n\t\t\t\t$(\".read-more\").html(lessText).append(\"&lt;a href='' class='read-more-link'&gt; Show More&lt;\/a&gt;\");\r\n\t\t\t} else {\r\n\t\t\t\t$(\"read-more\").html(readMoreHTML);\r\n\t\t\t}\r\n\r\n\t\t\t$(\"body\").on(\"click\", \".read-more-link\", function(event){\r\n\t\t\t\tevent.preventDefault();\r\n\t\t\t\t$(this).parent(\".read-more\").html(readMoreHTML).append(\"&lt;a href='' class='show-less-link'&gt; Show Less&lt;\/a&gt;\");\r\n\t\t\t});\r\n\r\n\t\t\t$(\"body\").on(\"click\", \".show-less-link\", function(){\r\n\t\t\t\tevent.preventDefault();\r\n\t\t\t\t$(this).parent(\".read-more\").html(readMoreHTML.substr(0, 100)).append(\"&lt;a href='' class='read-more-link'&gt; Show More&lt;\/a&gt;\");\r\n\t\t\t});\r\n\t\t});\r\n\t&lt;\/script&gt;\r\n\t&lt;style type=\"text\/css\"&gt;\r\n\t\tbody{\r\n\t\t\tbackground: grey;\r\n\t\t\tpadding: 0;\r\n\t\t\tmargin: 0;\r\n\t\t\tfont-family: sans-serif;\r\n\t\t}\r\n\r\n\t\t.content{\r\n\t\t\tbackground: #fff;\r\n\t\t\tmargin: 0 auto;\r\n\t\t\twidth: 600px;\r\n\t\t\tpadding: 10px;\r\n\t\t\tmin-height: 300px;\r\n\t\t}\r\n\r\n\t\t.read-more{\r\n\t\t\tborder: 1px solid #000;\r\n\t\t\tpadding: 15px;\r\n\t\t\tmargin-bottom: 20px;\r\n\t\t}\r\n\r\n\t\t.read-more-link, .show-less-link{\r\n\t\t\ttext-decoration: none;\r\n\t\t\tfont-weight: bold;\r\n\t\t\tcolor: green;\r\n\t\t}\r\n\t&lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\t&lt;div class=\"content\"&gt;\r\n\t\t&lt;div class=\"read-more\"&gt;\r\n\t\t\tThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.\r\n\t\t&lt;\/div&gt;\r\n\r\n\t\t&lt;div class=\"read-more\"&gt;\r\n\t\t\tThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.\r\n\t\t&lt;\/div&gt;\r\n\r\n\t\t&lt;div class=\"read-more\"&gt;\r\n\t\t\tThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.\r\n\t\t&lt;\/div&gt;\r\n\t&lt;\/div&gt;\r\n\r\n\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>Untuk bagian headnya, disini kita letakkan plugin jQuery dan Aktivasinya, lihat potongan source code berikut:<\/p>\n<pre class=\"lang:default decode:true \" >&lt;script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.3.1\/jquery.min.js\"&gt;&lt;\/script&gt;\r\n\t&lt;script type=\"text\/javascript\"&gt;\r\n\t\t$(document).ready(function(){\r\n\t\t\tvar readMoreHTML = $(\".read-more\").html();\r\n\t\t\tvar lessText = readMoreHTML.substr(0, 100);\r\n\r\n\t\t\tif(readMoreHTML.length &gt; 100){\r\n\t\t\t\t$(\".read-more\").html(lessText).append(\"&lt;a href='' class='read-more-link'&gt; Show More&lt;\/a&gt;\");\r\n\t\t\t} else {\r\n\t\t\t\t$(\"read-more\").html(readMoreHTML);\r\n\t\t\t}\r\n\r\n\t\t\t$(\"body\").on(\"click\", \".read-more-link\", function(event){\r\n\t\t\t\tevent.preventDefault();\r\n\t\t\t\t$(this).parent(\".read-more\").html(readMoreHTML).append(\"&lt;a href='' class='show-less-link'&gt; Show Less&lt;\/a&gt;\");\r\n\t\t\t});\r\n\r\n\t\t\t$(\"body\").on(\"click\", \".show-less-link\", function(){\r\n\t\t\t\tevent.preventDefault();\r\n\t\t\t\t$(this).parent(\".read-more\").html(readMoreHTML.substr(0, 100)).append(\"&lt;a href='' class='read-more-link'&gt; Show More&lt;\/a&gt;\");\r\n\t\t\t});\r\n\t\t});\r\n\t&lt;\/script&gt;<\/pre>\n<p>jangan lupa itu skrip diatas yang paling penting, disini kita menggunakan teknik CSS Embededd, supaya tidak terlalu banyak file.<\/p>\n<p>Untuk demonya kalian bisa lihat disini:<br \/>\n<a href=\"http:\/\/www.yellowweb.id\/demo\/read-more\/\" rel=\"noopener\" target=\"_blank\">URL:http:\/\/www.yellowweb.id\/demo\/read-more\/<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mungkin teman-teman bertanya-tanya, bagaimana caranya membuat tombol read-more yang berfungsi untuk memunculkan sebagian tulisan atau teks paragraf, saat membuat sebuah artikel yang cukup panjang.<\/p>\n","protected":false},"author":1,"featured_media":969,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[116,11],"tags":[18,424,117,423],"class_list":["post-968","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-jquery","category-tutorial","tag-jquery","tag-jquery-plugin","tag-plugin","tag-read-more"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Read more link (jQuery) - YELLOWWEB.ID<\/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:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Read more link (jQuery) - YELLOWWEB.ID\" \/>\n<meta property=\"og:description\" content=\"Mungkin teman-teman bertanya-tanya, bagaimana caranya membuat tombol read-more yang berfungsi untuk memunculkan sebagian tulisan atau teks paragraf, saat membuat sebuah artikel yang cukup panjang.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/\" \/>\n<meta property=\"og:site_name\" content=\"YELLOWWEB.ID\" \/>\n<meta property=\"article:published_time\" content=\"2018-03-24T03:55:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/www.yellowweb.id\/blog\/wp-content\/uploads\/2018\/03\/read-more-01.jpg?fit=2500%2C1208&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"2500\" \/>\n\t<meta property=\"og:image:height\" content=\"1208\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"yellowweb\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"yellowweb\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/read-more-link-jquery\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/read-more-link-jquery\\\/\"},\"author\":{\"name\":\"yellowweb\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"headline\":\"Read more link (jQuery)\",\"datePublished\":\"2018-03-24T03:55:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/read-more-link-jquery\\\/\"},\"wordCount\":104,\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/read-more-link-jquery\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/03\\\/read-more-01.jpg\",\"keywords\":[\"jquery\",\"jquery plugin\",\"plugin\",\"read more\"],\"articleSection\":[\"jQuery\",\"Tutorial\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/read-more-link-jquery\\\/\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/read-more-link-jquery\\\/\",\"name\":\"Read more link (jQuery) - YELLOWWEB.ID\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/read-more-link-jquery\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/read-more-link-jquery\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/03\\\/read-more-01.jpg\",\"datePublished\":\"2018-03-24T03:55:24+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/read-more-link-jquery\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/read-more-link-jquery\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/read-more-link-jquery\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/03\\\/read-more-01.jpg\",\"contentUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/03\\\/read-more-01.jpg\",\"width\":2500,\"height\":1208,\"caption\":\"Read more link jquery\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/read-more-link-jquery\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Read more link (jQuery)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/\",\"name\":\"YELLOWWEB.ID\",\"description\":\"Kursus Web Design | Kursus Web Programming | Mobile Web Apps | Digital Marketing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\",\"name\":\"yellowweb\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"caption\":\"yellowweb\"},\"sameAs\":[\"https:\\\/\\\/www.yellowweb.id\"],\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/author\\\/yellowweb\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Read more link (jQuery) - YELLOWWEB.ID","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:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/","og_locale":"en_GB","og_type":"article","og_title":"Read more link (jQuery) - YELLOWWEB.ID","og_description":"Mungkin teman-teman bertanya-tanya, bagaimana caranya membuat tombol read-more yang berfungsi untuk memunculkan sebagian tulisan atau teks paragraf, saat membuat sebuah artikel yang cukup panjang.","og_url":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/","og_site_name":"YELLOWWEB.ID","article_published_time":"2018-03-24T03:55:24+00:00","og_image":[{"width":2500,"height":1208,"url":"https:\/\/i0.wp.com\/www.yellowweb.id\/blog\/wp-content\/uploads\/2018\/03\/read-more-01.jpg?fit=2500%2C1208&ssl=1","type":"image\/jpeg"}],"author":"yellowweb","twitter_card":"summary_large_image","twitter_misc":{"Written by":"yellowweb","Estimated reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/#article","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/"},"author":{"name":"yellowweb","@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"headline":"Read more link (jQuery)","datePublished":"2018-03-24T03:55:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/"},"wordCount":104,"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2018\/03\/read-more-01.jpg","keywords":["jquery","jquery plugin","plugin","read more"],"articleSection":["jQuery","Tutorial"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/","url":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/","name":"Read more link (jQuery) - YELLOWWEB.ID","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/#primaryimage"},"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2018\/03\/read-more-01.jpg","datePublished":"2018-03-24T03:55:24+00:00","author":{"@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"breadcrumb":{"@id":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/#primaryimage","url":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2018\/03\/read-more-01.jpg","contentUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2018\/03\/read-more-01.jpg","width":2500,"height":1208,"caption":"Read more link jquery"},{"@type":"BreadcrumbList","@id":"https:\/\/www.yellowweb.id\/blog\/read-more-link-jquery\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.yellowweb.id\/blog\/"},{"@type":"ListItem","position":2,"name":"Read more link (jQuery)"}]},{"@type":"WebSite","@id":"https:\/\/www.yellowweb.id\/blog\/#website","url":"https:\/\/www.yellowweb.id\/blog\/","name":"YELLOWWEB.ID","description":"Kursus Web Design | Kursus Web Programming | Mobile Web Apps | Digital Marketing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.yellowweb.id\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829","name":"yellowweb","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","caption":"yellowweb"},"sameAs":["https:\/\/www.yellowweb.id"],"url":"https:\/\/www.yellowweb.id\/blog\/author\/yellowweb\/"}]}},"_links":{"self":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/968","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/comments?post=968"}],"version-history":[{"count":1,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/968\/revisions"}],"predecessor-version":[{"id":970,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/968\/revisions\/970"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media\/969"}],"wp:attachment":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media?parent=968"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/categories?post=968"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/tags?post=968"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}