{"id":12252,"date":"2020-05-31T14:54:02","date_gmt":"2020-05-31T14:54:02","guid":{"rendered":"http:\/\/wiki2.plumserver.com\/?post_type=ht_kb&#038;p=12252"},"modified":"2022-08-04T09:01:23","modified_gmt":"2022-08-04T13:01:23","slug":"data-feed-generator-tags","status":"publish","type":"post","link":"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags","title":{"rendered":"Magneto 2 Data Feed Generator Tags"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Here you will learn how to use tags to properly configure the template that will be later generated by the <a href=\"\/magento-data-feed\">Magento 2 Data Feed Generator Extension<\/a>. You will also find the full list of tags that can be in a template.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"the-order-of-using-tags\">The Order of Using Tags<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">As you can see, a template consists of three separate sections: the header, the body, and the footer. The header and footer are repeated only once, so only document tags can be used here. Otherwise, the system will automatically delete any other tags (like catalog tags or product tags) in the file that will be displayed to the user. The body of the template is repeatable and is generated every time for each catalog or product depending on the type of feed (products or categories). For instance, if there are one hundred categories in the feed, the system will generate one hundred blocks of texts that will appear between the header and the footer, and data for changing tags will be generated for each category separately. For example, if there is a tag {category.name}, there will be a separate category name in each of the one hundred blocks of texts.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To create a template, use tags written in the following format:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-markup\" data-line=\"\">{entity.property[|modifierName:modifierParam]}<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">For instance: {product.name}, {product.description|truncate:500}<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You can use document tags in the body irrespective of the type of the feed. You can also use tags of categories if the type of the feed is &#8216;category&#8217;, tags of products if the type of the feed is &#8216;product&#8217;. When using the type of the feed &#8220;Product&#8217;, the system will automatically use the category data this product belongs to for processing category tags.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Example (the type of the feed &#8216;Product&#8217;):<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-markup\" data-line=\"\">&lt;item&gt;\n    &lt;title&gt;{product.name}&lt;\/title&gt;\n    &lt;description&gt;{product.description}&lt;\/description&gt;\n    &lt;pubDate&gt;{product.updated_at}&lt;\/pubDate&gt;\n    &lt;link&gt;{product.url}&lt;\/link&gt;\n&lt;\/item&gt;<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">The Extension will generate several blocks according to the number of products available. The result will be as follows:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-markup\" data-line=\"\">&lt;item&gt;\n    &lt;title&gt;BlackBerry 8100 Pearl&lt;\/title&gt;\n    &lt;description&gt;Like the BlackBerry 7105t, the BlackBerry 8100 Pearl is The BlackBerry 8100 Pearl sports \na large 240 x 260 screen that supports over 65,000 colors-- plenty of real estate to view your e-mails,\nWeb browser content, messaging sessions, and attachments.&lt;\/description&gt;\n    &lt;pubDate&gt;2013-04-30 12:56:37&lt;\/pubDate&gt;\n    &lt;link&gt;http:\/\/www.private-sales-v20.plumrocket.net\/all\/electronics\/blackberry-8100-pearl.html&lt;\/link&gt;\n&lt;\/item&gt;<\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">The List of Tags<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Document Tags<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">There is a list of all document tags in the table below.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Tag<\/th><th>Description<\/th><\/tr><tr><td><code class=\"\" data-line=\"\">{site.now}<\/code><\/td><td>Current time in the format &#8220;Y-m-d H:i:s&#8221;<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">{site.name}<\/code><\/td><td>The name of the store according to global settings<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">{site.phone}<\/code><\/td><td>Store contact phone number<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">{site.address}<\/code><\/td><td>Store address<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">{site.url}<\/code><\/td><td>URL store address<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">{site.currency_code}<\/code><\/td><td>Store currency code, e.g. USD<\/td><\/tr><tr><td><code class=\"\" data-line=\"\">{count}<\/code><\/td><td>The number of positions in the feed. It can only be used in Footer Template<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Formatting Tags:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Tag<\/th><th>Description<\/th><\/tr><tr><td><code class=\"\" data-line=\"\">{no_br}<\/code><br>&#8230;<br><code class=\"\" data-line=\"\">{\/no_br}<\/code><\/td><td>Removes the hyphens replacing them with space gaps in order to prevent words overlapping<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">{no_html}<\/code><br>&#8230;<br><code class=\"\" data-line=\"\">{\/no_html}<\/code><\/td><td>Removes all tags (Note! It does not produce tag codes but totally removes a tag)<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">{no_quotes}<\/code><br>&#8230;<br><code class=\"\" data-line=\"\">{\/no_quotes}<\/code><\/td><td>Removes quotation marks<br><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">These tags can be randomly and partially overlapped. Below are the examples of usage:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"\" data-line=\"\">{no_br}{ho_html}{product.description}{\/no_html}{\/no_br}<\/code><\/pre><\/div>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"\" data-line=\"\">{ho_html}{no_br}{product.description}{\/no_html}{\/no_br}<\/code><\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Category Tags (Catalog Tags)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">There is a list of all category tags in the table below. The tag writing is carried out in the following way: {category.XXX}, where XXX is one of the tags like {category.meta_description} will show the meta description of the current category.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Tag<\/th><th>Description<\/th><\/tr><tr><td><code class=\"\" data-line=\"\">children_count<\/code><\/td><td>The number of subcategories in a category<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">created_at<\/code><\/td><td>The time and date of category creation<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">description<\/code><\/td><td>Category description<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">entity_id<\/code><\/td><td>Category ID<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">image<\/code><\/td><td>File name of image, example &#8220;shirt.jpg&#8221;<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">image_url<\/code><\/td><td>Full url of image, example &#8220;http:\/\/www.example.com\/media\/category\/image\/p\/12\/s\/shirt.jpg&#8221; (Recommend)<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">meta_title<\/code><\/td><td>Category meta title<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">meta_keywords<\/code><\/td><td>Category meta keywords<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">meta_description<\/code><\/td><td>Category meta description<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">name<\/code><\/td><td>Category title<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">parent_id<\/code><\/td><td>Parent category ID<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">privatesale_date_start<\/code><\/td><td>The date and time of sales beginning (Private Sales Extension Required)<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">privatesale_date_end<\/code><\/td><td>The date and time of sales ending (Private Sales Extension Required)<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">thumbnail<\/code><\/td><td>Thumbnail file name, example &#8220;shirt.jpg&#8221;<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">thumbnail_url<\/code><\/td><td>Full url of thumbnail, example &#8220;http:\/\/www.example.com\/media\/category\/cache\/128&#215;24\/h\/shirt.jpg&#8221;<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">updated_at<\/code><\/td><td>The date and time of the latest category update<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">url<\/code><\/td><td>Absolute category path<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">open_url<\/code><\/td><td>Absolute category path for guests (Url Manager Extension Required)<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">url_key<\/code><\/td><td>Category name in URL<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">url_path<\/code><\/td><td>Relative Category path<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">brand_name<\/code><\/td><td>Brand name (Shop by Brand Extension Required)<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">brand_comment<\/code><\/td><td>Comment to the brand (Shop by Brand Extension Required)<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">brand_link<\/code><\/td><td>Brand link (Shop by Brand Extension Required)<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">brand_image<\/code><\/td><td>Brand image (Shop by Brand Extension Required)<br><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Products Tags<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">There is a list of all product tags in the table below. The tag writing is carried out in the following way: {product.XXX}, where XXX is an arbitrary tag like {product.name} &#8211; the name of the product.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Tag<\/th><th>Description<\/th><\/tr><tr><td><code class=\"\" data-line=\"\">breadcrumb<\/code><\/td><td>The deepest breadcrumb of the product<\/td><\/tr><tr><td><code class=\"\" data-line=\"\">created_at<\/code><\/td><td>The Date and time of product creation<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">description<\/code><\/td><td>Product Description<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">entity_id<\/code><\/td><td>Product ID<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">final_price<\/code><\/td><td>The final product price<\/td><\/tr><tr><td><code class=\"\" data-line=\"\">image<\/code><\/td><td>Product image relative path<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">image_url<\/code><\/td><td>Product image absolute path<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">meta_description<\/code><\/td><td>Product meta description<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">meta_keyword<\/code><\/td><td>Product meta keyword<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">meta_title<\/code><\/td><td>Product meta title<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">name<\/code><\/td><td>Product title<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">news_from_date<\/code><\/td><td>The date marking the \u201cNew Product\u201d status<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">news_to_date<\/code><\/td><td>The final date of the \u201cNew Product\u201d status<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">price<\/code><\/td><td>The price of a product<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">price_with_currency<\/code><\/td><td>Product price in the currency<\/td><\/tr><tr><td><code class=\"\" data-line=\"\">price_with_tax<\/code><\/td><td>Product price including tax<\/td><\/tr><tr><td><code class=\"\" data-line=\"\">price_without_tax<\/code><\/td><td>Product price excluding tax<\/td><\/tr><tr><td><code class=\"\" data-line=\"\">short_description<\/code><\/td><td>Short description of a product<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">sku<\/code><\/td><td>Stock-keeping unit of a product<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">small_image<\/code><\/td><td>Product image relative path to cart page<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">small_image_url<\/code><\/td><td>Product image absolute path to cart page<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">sold<\/code><\/td><td>The quantity of sold products<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">special_from_date<\/code><\/td><td>The date marking the beginning of the special price of the product<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">special_to_date<\/code><\/td><td>The date marking the end of the special price of the product<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">special_price<\/code><\/td><td>Special Price. If the field is empty regular price will be displayed<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">thumbnail<\/code><\/td><td>Product image relative path to the list of products<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">thumbnail_url<\/code><\/td><td>Product image absolute path to the list of products<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">qty<\/code><\/td><td>The number of products available in stock<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">updated_at<\/code><\/td><td>The date and time of the latest product update<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">url<\/code><\/td><td>Absolute product path<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">url_key<\/code><\/td><td>Product name in URL<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">url_path<\/code><\/td><td>Relative product path<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">weight<\/code><\/td><td>Product weight<br><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Extended Tags:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Tag<\/th><th>Description<\/th><\/tr><tr><td><code class=\"\" data-line=\"\">{product.child_items}<\/code><br>&#8230;<br><code class=\"\" data-line=\"\">{\/product.child_items}<\/code><\/td><td>Block with child items<br><\/td><\/tr><tr><td><code class=\"\" data-line=\"\">{product.child}<\/code><br>&#8230;<br><code class=\"\" data-line=\"\">{\/product.child}<\/code><\/td><td>The block with child items is added to {product.child_items}, and does not work beyond it. Its content will be repeated for each child item of the parent one, when tags parsing is launched.<\/td><\/tr><tr><td><code class=\"\" data-line=\"\">{product.parent.sku}<\/code><\/td><td>Parent product SKU, works only for child products of a configurable product. You can also use some other attributes instead of SKU, for example:  {product.parent.name}<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Child Tags<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Child tags coincide with those used for Product Tags (see described above), except for .child_items and .child. The tags {child.xxx} are available and processed only if they belong to the block {product.child} &#8230; {\/product.child}. Otherwise, these will be removed from the result.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Below are the examples of tags usage.<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-markup\" data-line=\"\">{product.child_items}\n    &lt;variants&gt;\n        {product.child}\n            &lt;variant&gt;\n                &lt;sku&gt;{child.sku}&lt;\/sku&gt;\n                &lt;color&gt;{child.color}&lt;\/color&gt;\n                &lt;size&gt;{child.size}&lt;\/size&gt;\n                &lt;detail_url&gt;{product.url}&lt;\/detail_url&gt;\n            &lt;\/variant&gt;\n        {\/product.child}\n    &lt;\/variants&gt;\n{\/product.child_items}<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">As a result, if you use the code described above, the XML structure will look like this:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-markup\" data-line=\"\">&lt;variants&gt;\n    &lt;variant&gt;\n        &lt;sku&gt;ZOO0241-LB&lt;\/sku&gt;\n        &lt;color&gt;BLACK&lt;\/color&gt;\n        &lt;size&gt;L&lt;\/size&gt;\n        &lt;detail_url&gt;http:\/\/www.shopeer.com\/product.html?id=10802&lt;\/detail_url&gt;\n    &lt;\/variant&gt;\n    &lt;variant&gt;\n        &lt;sku&gt;ZOO0241-MN&lt;\/sku&gt;\n        &lt;color&gt;NAVY&lt;\/color&gt;\n        &lt;size&gt;M&lt;\/size&gt;\n        &lt;detail_url&gt;http:\/\/www.shopeer.com\/product.html?id=10935&lt;\/detail_url&gt;\n    &lt;\/variant&gt;\n    &lt;variant&gt;\n        &lt;sku&gt;ZOO0241-SR&lt;\/sku&gt;\n        &lt;color&gt;RED&lt;\/color&gt;\n        &lt;size&gt;S&lt;\/size&gt;\n        &lt;detail_url&gt;http:\/\/www.shopeer.com\/product.html?id=12618&lt;\/detail_url&gt;\n    &lt;\/variant&gt;\n&lt;\/variants&gt;<\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">The List of Modifiers<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Modifiers change values before pasting them into text. You can add one or more modifiers to each tag:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>date_format<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Formats the date value to the specified format. It can only be used for values that contain a date or timestamp.<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\" data-line=\"\">Format: date_format:{PHP date format}\nExample: {site.now|date_format:Y-m-d\/H:i:s}<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>truncate<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Truncates the string if it is longer than the specified length. Also adds an ellipsis at the end by default. Ellipsis are taken into account in a given length.<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\" data-line=\"\">Format: truncate:{length}:[{string for end}]\nExample: {product.description|truncate:500}<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>size<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Allows you to resize the image. Works only for product.image_url, product.thumbnail_url, product.small_image_url.<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\" data-line=\"\">Format: size:{width}:[{height}]\nExample: {product.image_url|size:500:400}<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>replace<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Replaces a character or string with the specified string (you can specify an empty string). Works for all data except an array.<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\" data-line=\"\">Format: replace:{search}:{replace}\nExample of deleting a character: {product.meta_keyword|replace:,:}\nExample of symbol replacement: {category.breadcrumb_path|replace: &gt; : \/}<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>suffix<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Adds a suffix to a field value only when the value is set. You can use it for strings that require clarifying the value, e.g. adds \u2018kg\u2019 in the following string: <code class=\"\" data-line=\"\">&lt;weight&gt;1 kg&lt;\/weight&gt;<\/code>. The {product.weight|suffix:&#8217; kg\u2019} tag allows hiding \u2018kg\u2019 when the field is empty.<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"\" data-line=\"\">Format: suffix:{suffix}\nExample: {product.weight|suffix: kg}\nExample with space: {product.weight|suffix:&#039; kg&#039;}<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>separator<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Joins array elements with a string <\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\" data-line=\"\">Format: separator:{string} \nExample: {product.breadcrumb|separator:,}\nExample with space: {product.breadcrumb|separator:&#039; \/ &#039;}<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>limit<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Sets limits for values. Works only with arrays.<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\" data-line=\"\">Format: limit:{length} \nExample: {product.categories|limit:30}<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>repeat<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Sets the entity to be repeated several times. Works only for paired tags and nested arrays.<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\" data-line=\"\">Format: repeat:{child_entity_name}  \nExample: {product.media_gallery|repeat:gallery_image}<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Example of the use:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\" data-line=\"\">{product.media_gallery|repeat:gallery_image|limit:10}\n    {gallery_image.url}\n{\/product.media_gallery}<\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here you will learn how to use tags to properly configure the template that will be later generated by the Magento 2 Data Feed Generator Extension. You will also find the full list of tags that can be in a template. The Order of Using Tags As you can see, a template consists of three &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Magneto 2 Data Feed Generator Tags&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[287],"tags":[],"class_list":["post-12252","post","type-post","status-publish","format-standard","hentry","category-magento-data-feed-v2-devguide","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v17.2 (Yoast SEO v28.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Magneto 2 Data Feed Generator Tags - Plumrocket Documentation<\/title>\n<meta name=\"description\" content=\"Here you will learn how to use tags to properly configure the template that will be later generated by the Magento 2 Data Feed Generator Extension. You\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Magneto 2 Data Feed Generator Tags\" \/>\n<meta property=\"og:description\" content=\"Here you will learn how to use tags to properly configure the template that will be later generated by the Magento 2 Data Feed Generator Extension. You\" \/>\n<meta property=\"og:url\" content=\"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags\" \/>\n<meta property=\"og:site_name\" content=\"Plumrocket Documentation\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-31T14:54:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-04T13:01:23+00:00\" \/>\n<meta name=\"author\" content=\"Plumrocket\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Plumrocket\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Magneto 2 Data Feed Generator Tags - Plumrocket Documentation","description":"Here you will learn how to use tags to properly configure the template that will be later generated by the Magento 2 Data Feed Generator Extension. You","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:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags","og_locale":"en_US","og_type":"article","og_title":"Magneto 2 Data Feed Generator Tags","og_description":"Here you will learn how to use tags to properly configure the template that will be later generated by the Magento 2 Data Feed Generator Extension. You","og_url":"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags","og_site_name":"Plumrocket Documentation","article_published_time":"2020-05-31T14:54:02+00:00","article_modified_time":"2022-08-04T13:01:23+00:00","author":"Plumrocket","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Plumrocket","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags#article","isPartOf":{"@id":"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags"},"author":{"name":"Plumrocket","@id":"https:\/\/plumrocket.com\/docs\/#\/schema\/person\/38b360639b934d6c984ee4f3ffce7d20"},"headline":"Magneto 2 Data Feed Generator Tags","datePublished":"2020-05-31T14:54:02+00:00","dateModified":"2022-08-04T13:01:23+00:00","mainEntityOfPage":{"@id":"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags"},"wordCount":1206,"articleSection":["Developer Guide"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags","url":"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags","name":"Magneto 2 Data Feed Generator Tags - Plumrocket Documentation","isPartOf":{"@id":"https:\/\/plumrocket.com\/docs\/#website"},"datePublished":"2020-05-31T14:54:02+00:00","dateModified":"2022-08-04T13:01:23+00:00","author":{"@id":"https:\/\/plumrocket.com\/docs\/#\/schema\/person\/38b360639b934d6c984ee4f3ffce7d20"},"description":"Here you will learn how to use tags to properly configure the template that will be later generated by the Magento 2 Data Feed Generator Extension. You","breadcrumb":{"@id":"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide\/tags#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Magento 2 Extensions","item":"https:\/\/plumrocket.com\/magento-extensions"},{"@type":"ListItem","position":2,"name":"Magento 2 Data Feed Generator","item":"https:\/\/plumrocket.com\/magento-data-feed"},{"@type":"ListItem","position":3,"name":"Documentation","item":"https:\/\/plumrocket.com\/docs\/magento-data-feed"},{"@type":"ListItem","position":4,"name":"v2","item":"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2"},{"@type":"ListItem","position":5,"name":"Developer Guide","item":"https:\/\/plumrocket.com\/docs\/magento-data-feed\/v2\/devguide"},{"@type":"ListItem","position":6,"name":"Generator Tags"}]},{"@type":"WebSite","@id":"https:\/\/plumrocket.com\/docs\/#website","url":"https:\/\/plumrocket.com\/docs\/","name":"Plumrocket Documentation","description":"Extensions docs, troubleshootings etc.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/plumrocket.com\/docs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/plumrocket.com\/docs\/#\/schema\/person\/38b360639b934d6c984ee4f3ffce7d20","name":"Plumrocket","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/85ed2f38dbe6a031f443b1949101e9b31bbd6985eae2cac6695629e7ad280aee?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/85ed2f38dbe6a031f443b1949101e9b31bbd6985eae2cac6695629e7ad280aee?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/85ed2f38dbe6a031f443b1949101e9b31bbd6985eae2cac6695629e7ad280aee?s=96&d=mm&r=g","caption":"Plumrocket"},"sameAs":["https:\/\/plumrocket.com\/docs"]}]}},"_links":{"self":[{"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/posts\/12252","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/comments?post=12252"}],"version-history":[{"count":9,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/posts\/12252\/revisions"}],"predecessor-version":[{"id":25878,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/posts\/12252\/revisions\/25878"}],"wp:attachment":[{"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/media?parent=12252"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/categories?post=12252"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/tags?post=12252"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}