{"id":255,"date":"2020-02-05T06:36:15","date_gmt":"2020-02-05T06:36:15","guid":{"rendered":"https:\/\/stockpack.co\/blog\/?p=255"},"modified":"2022-11-02T19:09:05","modified_gmt":"2022-11-02T19:09:05","slug":"changing-the-automated-captions","status":"publish","type":"post","link":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/","title":{"rendered":"Changing the automated captions"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">In the book &#8220;<a href=\"https:\/\/www.amazon.co.uk\/dp\/0321965515\">Don&#8217;t make me think<\/a>&#8221; by Steve Krug, there&#8217;s an explanation about the fact that humans are quite likely to scan an article instead of reading it. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">While scanning your article the parts that stand out are the ones that are more unique. That includes images and captions, as captions are normally in a <strong>different<\/strong> <em>style<\/em>. <\/p>\n\n\n\n<!--more-->\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"577\" src=\"https:\/\/stockpack.co\/blog\/wp-content\/uploads\/2020\/02\/unique-watermelon-bicycle-stockpack-unsplash-1024x577.jpeg\" alt=\"Unique watermelon bicycle\" class=\"wp-image-257\" srcset=\"https:\/\/stockpack.co\/blog\/wp-content\/uploads\/2020\/02\/unique-watermelon-bicycle-stockpack-unsplash-1024x577.jpeg 1024w, https:\/\/stockpack.co\/blog\/wp-content\/uploads\/2020\/02\/unique-watermelon-bicycle-stockpack-unsplash-300x169.jpeg 300w, https:\/\/stockpack.co\/blog\/wp-content\/uploads\/2020\/02\/unique-watermelon-bicycle-stockpack-unsplash-768x433.jpeg 768w, https:\/\/stockpack.co\/blog\/wp-content\/uploads\/2020\/02\/unique-watermelon-bicycle-stockpack-unsplash-1536x866.jpeg 1536w, https:\/\/stockpack.co\/blog\/wp-content\/uploads\/2020\/02\/unique-watermelon-bicycle-stockpack-unsplash-2048x1155.jpeg 2048w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Photo by <a href=\"https:\/\/unsplash.com\/@cristina_gottardi?utm_source=Stockpack&amp;utm_medium=referral&amp;utm_campaign=api-credit\" target=\"_blank\" rel=\"noopener noreferrer\">Cristina Gottardi<\/a> on <a href=\"https:\/\/unsplash.com\/photos\/-22C5tv2hyY?utm_source=StockPack&amp;utm_medium=referral\" target=\"_blank\" rel=\"noopener noreferrer\">Unsplash<\/a><\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Unique captions<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">You should aim to be unique as much as possible, as <strong>unique<\/strong> stands out. To support that, we are allowing an easy way to customize the captions in WordPress. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">There is a filter available named suggestively: <code>stockpack_caption<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This filter allows translating or modifying the format of the caption. The default WordPress caption looks like this (<em>end lines added for readability<\/em>):<\/p>\n\n\n\n<div style=\"height: 250px; position:relative; margin-bottom: 50px;\" class=\"wp-block-simple-code-block-ace\"><div style=\"position:absolute;top:-20px;right:0px;cursor:pointer\" class=\"copy-simple-code-block\"><svg aria-hidden=\"true\" role=\"img\" focusable=\"false\" class=\"dashicon dashicons-admin-page\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"20\" height=\"20\" viewbox=\"0 0 20 20\"><path d=\"M6 15V2h10v13H6zm-1 1h8v2H3V5h2v11z\"><\/path><\/svg><\/div><pre class=\"wp-block-simple-code-block-ace\" style=\"position:absolute;top:0;right:0;bottom:0;left:0\" data-mode=\"html\" data-theme=\"monokai\" data-fontsize=\"14\" data-lines=\"Infinity\" data-showlines=\"true\" data-copy=\"true\">Photo by \n&lt;a href=\"http:\/\/provider.com\/author-url-here\">\n    John Doe\n&lt;\/a> \non \n&lt;a href=\"http:\/\/provider.com\/image-url-goes-here\">\n    FavoriteProvider\n&lt;\/a><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">That is the code, here&#8217;s how that renders: <em>Photo by <a rel=\"noreferrer noopener\" href=\"https:\/\/unsplash.com\/@cristina_gottardi?utm_source=Stockpack&amp;utm_medium=referral&amp;utm_campaign=api-credit\" target=\"_blank\">Cristina Gottardi<\/a> on <a rel=\"noreferrer noopener\" href=\"https:\/\/unsplash.com\/photos\/-22C5tv2hyY?utm_source=StockPack&amp;utm_medium=referral\" target=\"_blank\">Unsplash<\/a><\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Setting your own caption<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you are not familiar with code, we got you <a href=\"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/#going-further\">covered<\/a>. Currently, you need to parse that caption, as the data is not available separately, but in time that might change. Here&#8217;s an example:<\/p>\n\n\n\n<div style=\"height: 250px; position:relative; margin-bottom: 50px;\" class=\"wp-block-simple-code-block-ace\"><pre class=\"wp-block-simple-code-block-ace\" style=\"position:absolute;top:0;right:0;bottom:0;left:0\" data-mode=\"php\" data-theme=\"monokai\" data-fontsize=\"14\" data-lines=\"Infinity\" data-showlines=\"true\" data-copy=\"false\">&lt;?php\nfunction change_stockpack_caption_format( $caption, $image ) {\n\tif ( $caption === '' ) {\n\t\treturn $caption;\n\t}\n\t$chunks = explode( \"&lt;\", $caption );\n\t$author= explode( \">\", $chunks[1] );\n\n\n\treturn \"Via &lt;$chunks[3]&lt;\/a> \/ $author[1] \";\n}\n\nadd_filter( 'stockpack_caption', 'change_stockpack_caption_format', 20, 2 );<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">This function removed the author URL, and displays only the image URL, while mentioning the author. Since users can easily get the author from the image URL this should be just fine. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s how that renders: <em>Via <a rel=\"noreferrer noopener\" href=\"https:\/\/unsplash.com\/photos\/-22C5tv2hyY?utm_source=StockPack&amp;utm_medium=referral\" target=\"_blank\">Unsplash<\/a><\/em> \/ <em>Cristina Gottardi<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"going-further\">Going further<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a specific caption format you need for your WordPress website, and you can&#8217;t get it working on your own, feel free to reach out. We&#8217;d be glad to help. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are looking for some tricks to help you stand out with your images check this article: <a href=\"https:\/\/stockpack.co\/blog\/5-simple-image-tricks-that-go-a-long-way-in-wordpress\/\">5 simple image tricks that go a long way in WordPress<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"> <\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the book &#8220;Don&#8217;t make me think&#8221; by Steve Krug, there&#8217;s an explanation about the fact that humans are quite likely to scan an article instead of reading it. While scanning your article the parts that stand out are the ones that are more unique. That includes images and captions, as captions are normally in &#8230; <a title=\"Changing the automated captions\" class=\"read-more\" href=\"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":256,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23,11,7,4,8],"tags":[],"class_list":["post-255","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-documentation","category-help","category-images","category-tutorial","category-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Changing the automated captions - StockPack Blog<\/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:\/\/stockpack.co\/blog\/changing-the-automated-captions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Changing the automated captions - StockPack Blog\" \/>\n<meta property=\"og:description\" content=\"In the book &#8220;Don&#8217;t make me think&#8221; by Steve Krug, there&#8217;s an explanation about the fact that humans are quite likely to scan an article instead of reading it. While scanning your article the parts that stand out are the ones that are more unique. That includes images and captions, as captions are normally in ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/\" \/>\n<meta property=\"og:site_name\" content=\"StockPack Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-05T06:36:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-02T19:09:05+00:00\" \/>\n<meta name=\"author\" content=\"Ionut Calara\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ionut_calara\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ionut Calara\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/\"},\"author\":{\"name\":\"Ionut Calara\",\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/#\\\/schema\\\/person\\\/9112129d4a5ac02fa752ed0bd3227095\"},\"headline\":\"Changing the automated captions\",\"datePublished\":\"2020-02-05T06:36:15+00:00\",\"dateModified\":\"2022-11-02T19:09:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/\"},\"wordCount\":290,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/lets-try-it-once-without-the-parachute-stockpack-deposit-photos-scaled.jpeg\",\"articleSection\":[\"Documentation\",\"Help\",\"Images\",\"Tutorial\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/\",\"url\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/\",\"name\":\"Changing the automated captions - StockPack Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/lets-try-it-once-without-the-parachute-stockpack-deposit-photos-scaled.jpeg\",\"datePublished\":\"2020-02-05T06:36:15+00:00\",\"dateModified\":\"2022-11-02T19:09:05+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/#primaryimage\",\"url\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/lets-try-it-once-without-the-parachute-stockpack-deposit-photos-scaled.jpeg\",\"contentUrl\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/lets-try-it-once-without-the-parachute-stockpack-deposit-photos-scaled.jpeg\",\"width\":2560,\"height\":2145,\"caption\":\"Photo by andrewgenn on Depositphotos\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/changing-the-automated-captions\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Changing the automated captions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/\",\"name\":\"StockPack Blog\",\"description\":\"Stock images in WordPress\",\"publisher\":{\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/#organization\",\"name\":\"StockPack Blog\",\"url\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/logo-white.png\",\"contentUrl\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/logo-white.png\",\"width\":230,\"height\":58,\"caption\":\"StockPack Blog\"},\"image\":{\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/#\\\/schema\\\/person\\\/9112129d4a5ac02fa752ed0bd3227095\",\"name\":\"Ionut Calara\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6de78df9383e3b7860eb9bed449329458a447ac1eb1281fa8cb1925cbbd27cf7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6de78df9383e3b7860eb9bed449329458a447ac1eb1281fa8cb1925cbbd27cf7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6de78df9383e3b7860eb9bed449329458a447ac1eb1281fa8cb1925cbbd27cf7?s=96&d=mm&r=g\",\"caption\":\"Ionut Calara\"},\"description\":\"Ionut is a full stack developer with a lot of love for well-built things. He loves products that have the user in mind and strives to build good UX. When he isn't coding, he'll spend as much time as possible with family and friends.\",\"sameAs\":[\"https:\\\/\\\/ionutcalara.me\",\"Calara Ionut\",\"https:\\\/\\\/x.com\\\/ionut_calara\"],\"url\":\"https:\\\/\\\/stockpack.co\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Changing the automated captions - StockPack Blog","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:\/\/stockpack.co\/blog\/changing-the-automated-captions\/","og_locale":"en_US","og_type":"article","og_title":"Changing the automated captions - StockPack Blog","og_description":"In the book &#8220;Don&#8217;t make me think&#8221; by Steve Krug, there&#8217;s an explanation about the fact that humans are quite likely to scan an article instead of reading it. While scanning your article the parts that stand out are the ones that are more unique. That includes images and captions, as captions are normally in ... Read more","og_url":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/","og_site_name":"StockPack Blog","article_published_time":"2020-02-05T06:36:15+00:00","article_modified_time":"2022-11-02T19:09:05+00:00","author":"Ionut Calara","twitter_card":"summary_large_image","twitter_creator":"@ionut_calara","twitter_misc":{"Written by":"Ionut Calara","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/#article","isPartOf":{"@id":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/"},"author":{"name":"Ionut Calara","@id":"https:\/\/stockpack.co\/blog\/#\/schema\/person\/9112129d4a5ac02fa752ed0bd3227095"},"headline":"Changing the automated captions","datePublished":"2020-02-05T06:36:15+00:00","dateModified":"2022-11-02T19:09:05+00:00","mainEntityOfPage":{"@id":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/"},"wordCount":290,"commentCount":3,"publisher":{"@id":"https:\/\/stockpack.co\/blog\/#organization"},"image":{"@id":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/#primaryimage"},"thumbnailUrl":"https:\/\/stockpack.co\/blog\/wp-content\/uploads\/2020\/02\/lets-try-it-once-without-the-parachute-stockpack-deposit-photos-scaled.jpeg","articleSection":["Documentation","Help","Images","Tutorial","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/","url":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/","name":"Changing the automated captions - StockPack Blog","isPartOf":{"@id":"https:\/\/stockpack.co\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/#primaryimage"},"image":{"@id":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/#primaryimage"},"thumbnailUrl":"https:\/\/stockpack.co\/blog\/wp-content\/uploads\/2020\/02\/lets-try-it-once-without-the-parachute-stockpack-deposit-photos-scaled.jpeg","datePublished":"2020-02-05T06:36:15+00:00","dateModified":"2022-11-02T19:09:05+00:00","breadcrumb":{"@id":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/#primaryimage","url":"https:\/\/stockpack.co\/blog\/wp-content\/uploads\/2020\/02\/lets-try-it-once-without-the-parachute-stockpack-deposit-photos-scaled.jpeg","contentUrl":"https:\/\/stockpack.co\/blog\/wp-content\/uploads\/2020\/02\/lets-try-it-once-without-the-parachute-stockpack-deposit-photos-scaled.jpeg","width":2560,"height":2145,"caption":"Photo by andrewgenn on Depositphotos"},{"@type":"BreadcrumbList","@id":"https:\/\/stockpack.co\/blog\/changing-the-automated-captions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/stockpack.co\/blog\/"},{"@type":"ListItem","position":2,"name":"Changing the automated captions"}]},{"@type":"WebSite","@id":"https:\/\/stockpack.co\/blog\/#website","url":"https:\/\/stockpack.co\/blog\/","name":"StockPack Blog","description":"Stock images in WordPress","publisher":{"@id":"https:\/\/stockpack.co\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/stockpack.co\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/stockpack.co\/blog\/#organization","name":"StockPack Blog","url":"https:\/\/stockpack.co\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/stockpack.co\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/stockpack.co\/blog\/wp-content\/uploads\/2019\/12\/logo-white.png","contentUrl":"https:\/\/stockpack.co\/blog\/wp-content\/uploads\/2019\/12\/logo-white.png","width":230,"height":58,"caption":"StockPack Blog"},"image":{"@id":"https:\/\/stockpack.co\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/stockpack.co\/blog\/#\/schema\/person\/9112129d4a5ac02fa752ed0bd3227095","name":"Ionut Calara","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/6de78df9383e3b7860eb9bed449329458a447ac1eb1281fa8cb1925cbbd27cf7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6de78df9383e3b7860eb9bed449329458a447ac1eb1281fa8cb1925cbbd27cf7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6de78df9383e3b7860eb9bed449329458a447ac1eb1281fa8cb1925cbbd27cf7?s=96&d=mm&r=g","caption":"Ionut Calara"},"description":"Ionut is a full stack developer with a lot of love for well-built things. He loves products that have the user in mind and strives to build good UX. When he isn't coding, he'll spend as much time as possible with family and friends.","sameAs":["https:\/\/ionutcalara.me","Calara Ionut","https:\/\/x.com\/ionut_calara"],"url":"https:\/\/stockpack.co\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/stockpack.co\/blog\/wp-json\/wp\/v2\/posts\/255","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/stockpack.co\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/stockpack.co\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/stockpack.co\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/stockpack.co\/blog\/wp-json\/wp\/v2\/comments?post=255"}],"version-history":[{"count":5,"href":"https:\/\/stockpack.co\/blog\/wp-json\/wp\/v2\/posts\/255\/revisions"}],"predecessor-version":[{"id":572,"href":"https:\/\/stockpack.co\/blog\/wp-json\/wp\/v2\/posts\/255\/revisions\/572"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/stockpack.co\/blog\/wp-json\/wp\/v2\/media\/256"}],"wp:attachment":[{"href":"https:\/\/stockpack.co\/blog\/wp-json\/wp\/v2\/media?parent=255"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/stockpack.co\/blog\/wp-json\/wp\/v2\/categories?post=255"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/stockpack.co\/blog\/wp-json\/wp\/v2\/tags?post=255"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}