{"id":13213,"date":"2025-10-06T09:49:18","date_gmt":"2025-10-06T07:49:18","guid":{"rendered":"https:\/\/longwatchstudio.com\/?p=13213"},"modified":"2025-11-20T09:38:55","modified_gmt":"2025-11-20T08:38:55","slug":"ajouter-un-badge-nouveau-sur-les-produits-recents","status":"publish","type":"post","link":"https:\/\/longwatchstudio.com\/en\/ajouter-un-badge-nouveau-sur-les-produits-recents\/","title":{"rendered":"Add a \u201cNew\u201d badge to recent products"},"content":{"rendered":"<p id=\"block-0278ff64-9f8d-4cf9-ad4f-6a23358268f6\"><strong>In e-commerce, new products naturally attract curiosity. A \u201cNew\u201d badge helps to distinguish them effortlessly, boosting clicks and giving your store a fresh feel. The problem is that WooCommerce does not offer this basic feature. Fortunately, a small piece of well-placed code solves the problem without the need for unnecessary plugins.<\/strong><\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p id=\"block-baee8ab1-ff5f-4dc5-8f60-1824ef6dba5f\" class=\"translation-block\">This snippet checks the publication date of each product displayed in the WooCommerce store. It compares this date to the current date to determine whether the product is recent enough\u2014in this case, less than 30 days old\u2014to be considered \u201cnew.\u201d If so, it inserts a small HTML block containing the \u201cNew\u201d badge just before the product title in the display loop. The badge is styled in CSS to appear visibly (top left, with a bright color), and you can adjust the freshness duration or style as needed. In summary, the code hooks into a WooCommerce hook (<code>woocommerce_before_shop_loop_item_title<\/code>) to dynamically enrich each product page without modifying the core of the theme.\n\nTranslated with DeepL.com (free version)<\/p>\n\n\n\n<p id=\"block-3242ddeb-dd09-4d70-aa9f-495b77adff3a\"><strong>Result<\/strong> : a stylized CSS badge visible on products less than 30 days old.<\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-547f018f-1fff-4321-b5a7-db74f2f06801\">1|Information<\/h2>\n\n\n\n<p id=\"block-6980e47d-68e1-4e92-8929-8a16d039234d\" class=\"translation-block\">Before using this snippet, make sure you have installed the <strong><a href=\"https:\/\/fr.wordpress.org\/plugins\/code-snippets\/\" target=\"_self\">Code Snippets<\/a><\/strong> plugin (free) on your WordPress site. If not, you can download it via the link below. If you have never added a specific feature to your WordPress site, we recommend you start by reading our dedicated guide (link below).<\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline is-style-outline--1\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/longwatchstudio.com\/en\/add-a-custom-feature-to-your-wordpress-website\/\">Guide \u2013 Add a feature to your WordPress site<\/a><\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/wordpress.org\/plugins\/code-snippets\/\">Download Code Snippets on wordpress.org<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" id=\"block-b20c3d6e-037d-4620-b8f3-362a3b1b0db9\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-81744cab-97d1-4ee5-a154-ebd1265b9a81\">2|Pr\u00e9requis<\/h2>\n\n\n\n<p id=\"block-4c1881a9-0856-4b87-af0c-4971620ccfed\">Here is the list of extensions required for this snippet to work properly. Make sure to install them before activating the snippet.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong><a href=\"https:\/\/woocommerce.com\/fr\/\">WooCommerce<\/a><\/strong><\/td><td>Necessary for selling virtual products on your site<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" id=\"block-e1c3def1-5b62-4286-81d1-81ac7a1524ae\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-1ad3c841-6335-46cc-98b8-c47247f5e7fe\">3|Snippet<\/h2>\n\n\n\n<p id=\"block-4f809b42-c1bf-42be-9483-51e0b322e3ba\">Here is the snippet to use. The comments inside the code will guide you on how this snippet works.<\/p>\n\n\n\n<p id=\"block-cad0fefa-3615-49c7-bc14-fbf0266ef6e4\" class=\"translation-block\">Make sure to check the \"<em><strong>Run snippet everywhere<\/strong><\/em>\" box before activating the snippet.<br><\/p>\n\n\n\n<pre title=\"Add a \u201cNew\u201d badge to recent products\" class=\"wp-block-code\"><code lang=\"php\" class=\"language-php line-numbers\">\/**\n * Affiche un badge &quot;Nouveau&quot; sur les produits r&eacute;cents\n *\/\nadd_action( &#039;woocommerce_before_shop_loop_item_title&#039;, &#039;lws_afficher_badge_nouveau&#039;, 10 );\n\nfunction lws_afficher_badge_nouveau() {\n    global $product;\n\n    \/\/ Dur&eacute;e pendant laquelle le produit est consid&eacute;r&eacute; comme &quot;nouveau&quot; (en jours)\n    $jours_nouveau = 30;\n\n    \/\/ R&eacute;cup&eacute;ration de la date de publication du produit\n    $date_publication = get_the_date( &#039;U&#039;, $product-&gt;get_id() );\n\n    \/\/ V&eacute;rification : si le produit a moins de X jours\n    if ( ( time() - ( $jours_nouveau * 24 * 60 * 60 ) ) &lt; $date_publication ) {\n        echo &#039;&lt;span class=&quot;badge-nouveau&quot; style=&quot;            position:absolute;            top:10px;            left:10px;            background-color:#e74c3c;            color:#fff;            padding:5px 10px;            font-size:12px;            border-radius:3px;            z-index:5;        &quot;&gt;Nouveau&lt;\/span&gt;&#039;;\n    }\n}\n\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-4497a26e-c2b3-451b-a511-0ae26e7d9e28\">Why is this code useful?<\/h2>\n\n\n\n<p class=\"translation-block\">This snippet frees you from plugins like \u201c<em>machins-pro-badge-ultimate<\/em>\u201d that slow down your site. It gives you complete control over the appearance, duration, and display logic of the \u201cNew\u201d badge. In short: a lightweight, elegant solution that is 100% tailored to your theme. <br>And above all, it flatters your visitors with the illusion of novelty\u2014the eternal fuel of commerce.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-25c9c130-a907-4a14-99dd-419d1f0ceda4\">Take it a step further<\/h2>\n\n\n\n<p id=\"block-527e8090-00e8-453f-870b-2b22b4609fe3\" class=\"translation-block\">This type of customization demonstrates how WooCommerce can be extended through WordPress filters and actions. If you'd like to further customize your loyalty program, consider consulting the <a href=\"https:\/\/plugins.longwatchstudio.com\/kbtopic\/wr\/\" target=\"_self\">WooRewards documentation<\/a> or hiring an experienced WordPress developer (see <a href=\"http:\/\/plugins.longwatchstudio.com\/woocommerce-development\/\" target=\"_self\">our Custom Development page<\/a>).<\/p>","protected":false},"excerpt":{"rendered":"<p>With this new snippet, you'll be able to display a \"New\" CSS badge on products recently added to your online store. A \"New\" badge helps distinguish these products effortlessly, boosting clicks and giving your store a fresh feel.<\/p>","protected":false},"author":4009,"featured_media":12990,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[98,147],"tags":[176,80,172,101],"class_list":["post-13213","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-code-snippet","tag-code","tag-php","tag-snippet-2","tag-woocommerce"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Ajouter un badge \u201cNouveau\u201d sur les produits r\u00e9cents - Long Watch Studio<\/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:\/\/longwatchstudio.com\/en\/ajouter-un-badge-nouveau-sur-les-produits-recents\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ajouter un badge \u201cNouveau\u201d sur les produits r\u00e9cents - Long Watch Studio\" \/>\n<meta property=\"og:description\" content=\"Avec ce nouveau snippet, vous allez pouvoir afficher un badge CSS &quot;Nouveau&quot; sur les produits r\u00e9cemment ajout\u00e9s \u00e0 l&#039;eshop. Un badge \u201cNouveau\u201d aide \u00e0 distinguer ces produits sans effort, boostant les clics et donnant un petit sentiment de fra\u00eecheur \u00e0 ta boutique.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/longwatchstudio.com\/en\/ajouter-un-badge-nouveau-sur-les-produits-recents\/\" \/>\n<meta property=\"og:site_name\" content=\"Long Watch Studio\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/LongWatchStudio\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-06T07:49:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-20T08:38:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2024\/10\/ban-snippet.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jonathan P.\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jonathan P.\" \/>\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:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/\"},\"author\":{\"name\":\"Jonathan P.\",\"@id\":\"https:\/\/longwatchstudio.com\/#\/schema\/person\/3e5fbca0dc142378c3eb2b2db08162ed\"},\"headline\":\"Ajouter un badge \u201cNouveau\u201d sur les produits r\u00e9cents\",\"datePublished\":\"2025-10-06T07:49:18+00:00\",\"dateModified\":\"2025-11-20T08:38:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/\"},\"wordCount\":480,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/longwatchstudio.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2024\/10\/ban-snippet.jpg\",\"keywords\":[\"Code\",\"PHP\",\"Snippet\",\"woocommerce\"],\"articleSection\":[\"Blog\",\"Code Snippet\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/\",\"url\":\"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/\",\"name\":\"Ajouter un badge \u201cNouveau\u201d sur les produits r\u00e9cents - Long Watch Studio\",\"isPartOf\":{\"@id\":\"https:\/\/longwatchstudio.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2024\/10\/ban-snippet.jpg\",\"datePublished\":\"2025-10-06T07:49:18+00:00\",\"dateModified\":\"2025-11-20T08:38:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#primaryimage\",\"url\":\"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2024\/10\/ban-snippet.jpg\",\"contentUrl\":\"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2024\/10\/ban-snippet.jpg\",\"width\":1920,\"height\":500},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/longwatchstudio.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ajouter un badge \u201cNouveau\u201d sur les produits r\u00e9cents\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/longwatchstudio.com\/#website\",\"url\":\"https:\/\/longwatchstudio.com\/\",\"name\":\"Long Watch Studio\",\"description\":\"Vous apporte le meilleur du Web\",\"publisher\":{\"@id\":\"https:\/\/longwatchstudio.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/longwatchstudio.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/longwatchstudio.com\/#organization\",\"name\":\"Long Watch Studio\",\"url\":\"https:\/\/longwatchstudio.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/longwatchstudio.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2016\/11\/logo-site.png\",\"contentUrl\":\"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2016\/11\/logo-site.png\",\"width\":223,\"height\":50,\"caption\":\"Long Watch Studio\"},\"image\":{\"@id\":\"https:\/\/longwatchstudio.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/LongWatchStudio\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/longwatchstudio.com\/#\/schema\/person\/3e5fbca0dc142378c3eb2b2db08162ed\",\"name\":\"Jonathan P.\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/6deb9312ad17fcd25052eeb41c9cc55e461f42eaae46ddc82a7dec704fa8bf1e?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6deb9312ad17fcd25052eeb41c9cc55e461f42eaae46ddc82a7dec704fa8bf1e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6deb9312ad17fcd25052eeb41c9cc55e461f42eaae46ddc82a7dec704fa8bf1e?s=96&d=mm&r=g\",\"caption\":\"Jonathan P.\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Ajouter un badge \u201cNouveau\u201d sur les produits r\u00e9cents - Long Watch Studio","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:\/\/longwatchstudio.com\/en\/ajouter-un-badge-nouveau-sur-les-produits-recents\/","og_locale":"en_US","og_type":"article","og_title":"Ajouter un badge \u201cNouveau\u201d sur les produits r\u00e9cents - Long Watch Studio","og_description":"Avec ce nouveau snippet, vous allez pouvoir afficher un badge CSS \"Nouveau\" sur les produits r\u00e9cemment ajout\u00e9s \u00e0 l'eshop. Un badge \u201cNouveau\u201d aide \u00e0 distinguer ces produits sans effort, boostant les clics et donnant un petit sentiment de fra\u00eecheur \u00e0 ta boutique.","og_url":"https:\/\/longwatchstudio.com\/en\/ajouter-un-badge-nouveau-sur-les-produits-recents\/","og_site_name":"Long Watch Studio","article_publisher":"https:\/\/www.facebook.com\/LongWatchStudio\/","article_published_time":"2025-10-06T07:49:18+00:00","article_modified_time":"2025-11-20T08:38:55+00:00","og_image":[{"width":1920,"height":500,"url":"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2024\/10\/ban-snippet.jpg","type":"image\/jpeg"}],"author":"Jonathan P.","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jonathan P.","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#article","isPartOf":{"@id":"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/"},"author":{"name":"Jonathan P.","@id":"https:\/\/longwatchstudio.com\/#\/schema\/person\/3e5fbca0dc142378c3eb2b2db08162ed"},"headline":"Ajouter un badge \u201cNouveau\u201d sur les produits r\u00e9cents","datePublished":"2025-10-06T07:49:18+00:00","dateModified":"2025-11-20T08:38:55+00:00","mainEntityOfPage":{"@id":"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/"},"wordCount":480,"commentCount":0,"publisher":{"@id":"https:\/\/longwatchstudio.com\/#organization"},"image":{"@id":"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#primaryimage"},"thumbnailUrl":"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2024\/10\/ban-snippet.jpg","keywords":["Code","PHP","Snippet","woocommerce"],"articleSection":["Blog","Code Snippet"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/","url":"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/","name":"Ajouter un badge \u201cNouveau\u201d sur les produits r\u00e9cents - Long Watch Studio","isPartOf":{"@id":"https:\/\/longwatchstudio.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#primaryimage"},"image":{"@id":"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#primaryimage"},"thumbnailUrl":"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2024\/10\/ban-snippet.jpg","datePublished":"2025-10-06T07:49:18+00:00","dateModified":"2025-11-20T08:38:55+00:00","breadcrumb":{"@id":"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#primaryimage","url":"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2024\/10\/ban-snippet.jpg","contentUrl":"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2024\/10\/ban-snippet.jpg","width":1920,"height":500},{"@type":"BreadcrumbList","@id":"https:\/\/longwatchstudio.com\/ajouter-un-badge-nouveau-sur-les-produits-recents\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/longwatchstudio.com\/"},{"@type":"ListItem","position":2,"name":"Ajouter un badge \u201cNouveau\u201d sur les produits r\u00e9cents"}]},{"@type":"WebSite","@id":"https:\/\/longwatchstudio.com\/#website","url":"https:\/\/longwatchstudio.com\/","name":"Long Watch Studio","description":"Brings you the best of the Web","publisher":{"@id":"https:\/\/longwatchstudio.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/longwatchstudio.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/longwatchstudio.com\/#organization","name":"Long Watch Studio","url":"https:\/\/longwatchstudio.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/longwatchstudio.com\/#\/schema\/logo\/image\/","url":"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2016\/11\/logo-site.png","contentUrl":"https:\/\/longwatchstudio.com\/wp-content\/uploads\/2016\/11\/logo-site.png","width":223,"height":50,"caption":"Long Watch Studio"},"image":{"@id":"https:\/\/longwatchstudio.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/LongWatchStudio\/"]},{"@type":"Person","@id":"https:\/\/longwatchstudio.com\/#\/schema\/person\/3e5fbca0dc142378c3eb2b2db08162ed","name":"Jonathan P.","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/6deb9312ad17fcd25052eeb41c9cc55e461f42eaae46ddc82a7dec704fa8bf1e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6deb9312ad17fcd25052eeb41c9cc55e461f42eaae46ddc82a7dec704fa8bf1e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6deb9312ad17fcd25052eeb41c9cc55e461f42eaae46ddc82a7dec704fa8bf1e?s=96&d=mm&r=g","caption":"Jonathan P."}}]}},"_links":{"self":[{"href":"https:\/\/longwatchstudio.com\/en\/wp-json\/wp\/v2\/posts\/13213","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/longwatchstudio.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/longwatchstudio.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/longwatchstudio.com\/en\/wp-json\/wp\/v2\/users\/4009"}],"replies":[{"embeddable":true,"href":"https:\/\/longwatchstudio.com\/en\/wp-json\/wp\/v2\/comments?post=13213"}],"version-history":[{"count":3,"href":"https:\/\/longwatchstudio.com\/en\/wp-json\/wp\/v2\/posts\/13213\/revisions"}],"predecessor-version":[{"id":13240,"href":"https:\/\/longwatchstudio.com\/en\/wp-json\/wp\/v2\/posts\/13213\/revisions\/13240"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/longwatchstudio.com\/en\/wp-json\/wp\/v2\/media\/12990"}],"wp:attachment":[{"href":"https:\/\/longwatchstudio.com\/en\/wp-json\/wp\/v2\/media?parent=13213"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/longwatchstudio.com\/en\/wp-json\/wp\/v2\/categories?post=13213"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/longwatchstudio.com\/en\/wp-json\/wp\/v2\/tags?post=13213"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}