{"id":31410,"date":"2018-04-21T15:47:46","date_gmt":"2018-04-21T15:47:46","guid":{"rendered":"https:\/\/ampscript.guide\/contentareabyname\/"},"modified":"2021-04-06T01:18:23","modified_gmt":"2021-04-06T01:18:23","slug":"contentareabyname","status":"publish","type":"post","link":"https:\/\/ampscript.guide\/contentareabyname\/","title":{"rendered":"ContentAreaByName"},"content":{"rendered":"<h2>ContentAreaByName<\/h2>\n<p>This function returns the content stored in the specified Content Area and optionally wraps the content in an <a href=\"\/beginimpressionregion\">Impression Region<\/a>.<\/p>\n<h3>Arguments<\/h3>\n<p><code>ContentAreaByName(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 Area 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 Area 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 Classic Content areas.  It does <em>not<\/em> retrieve content stored in Content Builder.  To retrieve content from Content Builder by name, use the <a href=\"\/contentblockbyname\">ContentBlockByName<\/a> function.<\/p>\n<\/blockquote>\n<h3>Example 1<\/h3>\n<p>A Content Area named <code>LoyaltyGreeting<\/code> in the <code>my contents<\/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 Area can be referenced as:<\/p>\n<pre><code>%%[\n\nvar @contentAreaPath\nset @contentAreaPath = \"my contents\\LoyaltyGreeting\"\n\n]%%\n%%=ContentAreaByName(@contentAreaPath)=%%<\/code><\/pre>\n<h4>Output<\/h4>\n<pre><code>Hello, Curt!<\/code><\/pre>\n<h3>Example 2<\/h3>\n<p>A Content Area named <code>LoyaltyGreeting<\/code> in the <code>my contents<\/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 Area 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 @contentAreaPath, @content, @retrieveStatus\nset @contentAreaPath = \"my contents\\LoyaltyGreeting_Oops\"  \/* does not exist *\/\nset @content = ContentAreaByName(@contentAreaPath, \"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>ContentAreaByName This function returns the content stored in the specified Content Area and optionally wraps the content in an Impression Region. Arguments ContentAreaByName(1,2,3,4,5) Ordinal Type Required Description 1 String True The full path of the Content Area 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 - ContentAreaByName<\/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\/contentareabyname\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The AMPscript Guide - ContentAreaByName\" \/>\n<meta property=\"og:description\" content=\"ContentAreaByName This function returns the content stored in the specified Content Area and optionally wraps the content in an Impression Region. Arguments ContentAreaByName(1,2,3,4,5) Ordinal Type Required Description 1 String True The full path of the Content Area 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\/contentareabyname\/\" \/>\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-04-06T01:18:23+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\/contentareabyname\/#webpage\",\"url\":\"https:\/\/ampscript.guide\/contentareabyname\/\",\"name\":\"The AMPscript Guide - ContentAreaByName\",\"isPartOf\":{\"@id\":\"https:\/\/ampscript.guide\/#website\"},\"datePublished\":\"2018-04-21T15:47:46+00:00\",\"dateModified\":\"2021-04-06T01:18:23+00:00\",\"author\":{\"@id\":\"https:\/\/ampscript.guide\/#\/schema\/person\/5335042f77731e84f9808aecef25daec\"},\"breadcrumb\":{\"@id\":\"https:\/\/ampscript.guide\/contentareabyname\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/ampscript.guide\/contentareabyname\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/ampscript.guide\/contentareabyname\/#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\/contentareabyname\/\",\"url\":\"https:\/\/ampscript.guide\/contentareabyname\/\",\"name\":\"ContentAreaByName\"}}]},{\"@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\/31410"}],"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=31410"}],"version-history":[{"count":0,"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/posts\/31410\/revisions"}],"wp:attachment":[{"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/media?parent=31410"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/categories?post=31410"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ampscript.guide\/wp-json\/wp\/v2\/tags?post=31410"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}