{"id":31416,"date":"2018-04-21T15:47:46","date_gmt":"2018-04-21T15:47:46","guid":{"rendered":"https:\/\/ampscript.guide\/contentblockbyname\/"},"modified":"2021-08-30T12:17:15","modified_gmt":"2021-08-30T12:17:15","slug":"contentblockbyname","status":"publish","type":"post","link":"https:\/\/ampscript.guide\/contentblockbyname\/","title":{"rendered":"ContentBlockByName"},"content":{"rendered":"<h2>ContentBlockByName<\/h2>\n<p>This function returns the content stored in the specified Content Block and optionally wraps the content in an <a href=\"\/beginimpressionregion\">Impression Region<\/a>.<\/p>\n<h3>Arguments<\/h3>\n<p><code>ContentBlockByName(1,2,3,4,5)<\/code><\/p>\n<table>\n<thead>\n<tr>\n<th style=\"text-align: center;\">Ordinal<\/th>\n<th style=\"text-align: left;\">Type<\/th>\n<th style=\"text-align: left;\">Required<\/th>\n<th style=\"text-align: left;\">Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"text-align: center;\">1<\/td>\n<td style=\"text-align: left;\">String<\/td>\n<td style=\"text-align: left;\">True<\/td>\n<td style=\"text-align: left;\">The full path of the content block to return<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">2<\/td>\n<td style=\"text-align: left;\">String<\/td>\n<td style=\"text-align: left;\">False<\/td>\n<td style=\"text-align: left;\">Name of the <a href=\"\/beginimpressionregion\">Impression Region<\/a> to associate with this Content Area<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">3<\/td>\n<td style=\"text-align: left;\">Boolean<\/td>\n<td style=\"text-align: left;\">False<\/td>\n<td style=\"text-align: left;\">Return an error if the Content Area cannot be found<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">4<\/td>\n<td style=\"text-align: left;\">String<\/td>\n<td style=\"text-align: left;\">False<\/td>\n<td style=\"text-align: left;\">Default content if an error occurs retrieving the content block specified in Ordinal 1<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">5<\/td>\n<td style=\"text-align: left;\">Number<\/td>\n<td style=\"text-align: left;\">False<\/td>\n<td style=\"text-align: left;\">Numeric status code resulting from the retrieve.  A value of <code>0<\/code> indicates the retrieve was successful, while <code>-1<\/code> indicates that the content was not found or empty.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<blockquote>\n<p>NOTE: This function is only for use with Content Builder assets.  It does <em>not<\/em> retrieve content stored in Classic Content.  To retrieve content from Classic Content by name, use the <a href=\"\/contentareabyname\">ContentAreaByName<\/a> function.<\/p>\n<\/blockquote>\n<h3>Example 1<\/h3>\n<p>A Content Block named <code>LoyaltyGreeting<\/code> in the <code>Content Builder<\/code> folder contains the following code:<\/p>\n<pre><code>%%[\n\nvar @firstName\nset @firstName = properCase(AttributeValue(\"FirstName\"))\n\n]%%\nHello, %%=v(@firstName)=%%!<\/code><\/pre>\n<p>The Content Block can be referenced as:<\/p>\n<pre><code>%%[\n\nvar @contentBlockName\nset @contentBlockName = \"Content Builder\\LoyaltyGreeting\"\n\n]%%\n%%=ContentBlockByName(@contentBlockName)=%%<\/code><\/pre>\n<h4>Output<\/h4>\n<pre><code>Hello, Curt!<\/code><\/pre>\n<h3>Example 2<\/h3>\n<p>A Content Block named <code>LoyaltyGreeting<\/code> in the <code>Content Builder<\/code> folder contains the following code:<\/p>\n<pre><code>%%[\n\nvar @firstName\nset @firstName = properCase(AttributeValue(\"FirstName\"))\n\n]%%\nHello, %%=v(@firstName)=%%!<\/code><\/pre>\n<p>In the scenario where the Content Block does not exist, fallback content is handled with the value of the fourth argument or by conditionally showing content based on the value of the <code>@retrieveStatus<\/code> variable:<\/p>\n<pre><code>%%[\n\nvar @contentBlockName, @content, @retrieveStatus\nset @contentBlockName = \"Content Builder\\LoyaltyGreeting_Oops\" \/* does not exist *\/\nset @content = ContentBlockByName(@contentBlockName, \"Greeting\", 0, \"Hello!\", @retrieveStatus)\n\noutput(concat(@content))\n\nif @retrieveStatus &lt; 0 then\n  output(concat('&lt;br&gt;&lt;br&gt;&lt;a href=\"https:\/\/limedash.com\/join\"&gt;Join Now&lt;\/a&gt; &amp;raquo;'))\nendif\n\n]%%\n<\/code><\/pre>\n<h4>Output<\/h4>\n<pre><code>Hello!\n\n&lt;a href=\"https:\/\/limedash.com\/join\"&gt;Join Now&lt;\/a&gt; &amp;raquo;<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>ContentBlockByName This function returns the content stored in the specified Content Block and optionally wraps the content in an Impression Region. Arguments ContentBlockByName(1,2,3,4,5) Ordinal Type Required Description 1 String True The full path of the content block to return 2 String False Name of the Impression Region to associate with this Content Area 3 Boolean [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v14.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>The AMPscript Guide - ContentBlockByName<\/title>\n<meta name=\"robots\" content=\"index, follow\" \/>\n<meta name=\"googlebot\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta name=\"bingbot\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ampscript.guide\/contentblockbyname\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The AMPscript Guide - ContentBlockByName\" \/>\n<meta property=\"og:description\" content=\"ContentBlockByName This function returns the content stored in the specified Content Block and optionally wraps the content in an Impression Region. Arguments ContentBlockByName(1,2,3,4,5) Ordinal Type Required Description 1 String True The full path of the content block to return 2 String False Name of the Impression Region to associate with this Content Area 3 Boolean [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ampscript.guide\/contentblockbyname\/\" \/>\n<meta property=\"og:site_name\" content=\"The AMPscript Guide\" \/>\n<meta property=\"article:published_time\" content=\"2018-04-21T15:47:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-30T12:17:15+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/ampscript.guide\/#website\",\"url\":\"https:\/\/ampscript.guide\/\",\"name\":\"The AMPscript Guide\",\"description\":\"The Definitive Scripting Manual for Salesforce Marketing Cloud\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":\"https:\/\/ampscript.guide\/?s={search_term_string}\",\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ampscript.guide\/contentblockbyname\/#webpage\",\"url\":\"https:\/\/ampscript.guide\/contentblockbyname\/\",\"name\":\"The AMPscript Guide - ContentBlockByName\",\"isPartOf\":{\"@id\":\"https:\/\/ampscript.guide\/#website\"},\"datePublished\":\"2018-04-21T15:47:46+00:00\",\"dateModified\":\"2021-08-30T12:17:15+00:00\",\"author\":{\"@id\":\"https:\/\/ampscript.guide\/#\/schema\/person\/5335042f77731e84f9808aecef25daec\"},\"breadcrumb\":{\"@id\":\"https:\/\/ampscript.guide\/contentblockbyname\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/ampscript.guide\/contentblockbyname\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/ampscript.guide\/contentblockbyname\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"item\":{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ampscript.guide\/\",\"url\":\"https:\/\/ampscript.guide\/\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"position\":2,\"item\":{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ampscript.guide\/contentblockbyname\/\",\"url\":\"https:\/\/ampscript.guide\/contentblockbyname\/\",\"name\":\"ContentBlockByName\"}}]},{\"@type\":[\"Person\"],\"@id\":\"https:\/\/ampscript.guide\/#\/schema\/person\/5335042f77731e84f9808aecef25daec\",\"name\":\"dev\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","_links":{"self":[{"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/posts\/31416"}],"collection":[{"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/comments?post=31416"}],"version-history":[{"count":0,"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/posts\/31416\/revisions"}],"wp:attachment":[{"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/media?parent=31416"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/categories?post=31416"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/tags?post=31416"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}