<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>shortcodes in footer &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/shortcodes-in-footer/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/shortcodes-in-footer/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 11 Oct 2025 23:21:23 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-36287</guid>
					<title><![CDATA[shortcodes in footer]]></title>
					<link>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-36287</link>
					<pubDate>Wed, 23 Apr 2014 14:25:18 +0000</pubDate>
					<dc:creator>Carmine M</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,<br />
I&#8217;m in the customizer adding info to the &#8220;Footer Content&#8221; field and want to add &#8220;Copyright [year] &#8230;&#8221; I&#8217;ve installed a plugin called &#8220;Extra Shortcodes&#8221; that will insert the current year. I&#8217;ve tested the shortcode on page content and widgets and it&#8217;s working fine. </p>
<p>can you give me the function and file to put it in? I think that&#8217;s what I need. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-36539</guid>
					<title><![CDATA[Reply To: shortcodes in footer]]></title>
					<link>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-36539</link>
					<pubDate>Thu, 24 Apr 2014 01:25:43 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Carmine,</p>
<p>Thank you for writing in! You could duplicate your <strong>/x/framework/views/{YOUR STACK}/wp-footer.php</strong> in to your child theme (eg. <strong>/x-child-{YOUR STACK}/framework/views/{YOUR STACK}/wp-footer.php</strong>).</p>
<p>Then find this line :</p>
<p><code>&lt;?php echo get_theme_mod( &#039;x_footer_content&#039; ); ?&gt;</code></p>
<p>And change it into :</p>
<p><code>&lt;?php echo do_shortcode(get_theme_mod( &#039;x_footer_content&#039; )); ?&gt;</code></p>
<p>Hope this helps</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-40195</guid>
					<title><![CDATA[Reply To: shortcodes in footer]]></title>
					<link>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-40195</link>
					<pubDate>Sat, 03 May 2014 22:10:52 +0000</pubDate>
					<dc:creator>Carmine M</dc:creator>

					<description>
						<![CDATA[
						<p>perfect.<br />
shouldn&#8217;t copyright date=current year be a theme option?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-40274</guid>
					<title><![CDATA[Reply To: shortcodes in footer]]></title>
					<link>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-40274</link>
					<pubDate>Sun, 04 May 2014 03:08:54 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Carmine,</p>
<p>Yes, that would be nice. But as of now, you could only add copyright text manually in customizer&#8217;s footer content. </p>
<p>Though, since we already setup a shortcode for your footer, then you could add this code at your child theme&#8217;s functions.php.</p>
<pre><code>add_shortcode(&#039;x-copyright-year&#039;, &#039;x_copyright_year&#039;);
function x_copyright_year($a) {
return date(&#039;Y&#039;);
}</code></pre>
<p>Then, you could use [x-copyright-year] shortcode at your footer text to display the year.</p>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-44030</guid>
					<title><![CDATA[Reply To: shortcodes in footer]]></title>
					<link>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-44030</link>
					<pubDate>Tue, 13 May 2014 20:01:32 +0000</pubDate>
					<dc:creator>Carmine M</dc:creator>

					<description>
						<![CDATA[
						<p>Fantastic and worked great. Now I&#8217;m having the same issue with sidebars / widgets won&#8217;t accept shortcodes OR UL/LI&#8217;s. Can you assist?</p>
<p>With Best Regards,</p>
<p>-carmine</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-44368</guid>
					<title><![CDATA[Reply To: shortcodes in footer]]></title>
					<link>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-44368</link>
					<pubDate>Wed, 14 May 2014 17:30:04 +0000</pubDate>
					<dc:creator>Alexander</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Carmine,</p>
<p>WordPress doesn&#8217;t intend for shortcodes to be used within widgets. I&#8217;m afraid we don&#8217;t have a feature to enable it, as it&#8217;s not recommended. A customization for this is something that would fall outside the scope of our support. You could look into a plugin that enables this for you, or consult with a developer.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-44402</guid>
					<title><![CDATA[Reply To: shortcodes in footer]]></title>
					<link>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-44402</link>
					<pubDate>Wed, 14 May 2014 19:30:21 +0000</pubDate>
					<dc:creator>Carmine M</dc:creator>

					<description>
						<![CDATA[
						<p>O&#8217;tay. Thanks. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-44655</guid>
					<title><![CDATA[Reply To: shortcodes in footer]]></title>
					<link>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-44655</link>
					<pubDate>Thu, 15 May 2014 08:10:12 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome Carmine.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-145690</guid>
					<title><![CDATA[Reply To: shortcodes in footer]]></title>
					<link>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-145690</link>
					<pubDate>Sat, 15 Nov 2014 16:05:23 +0000</pubDate>
					<dc:creator>Carmine M</dc:creator>

					<description>
						<![CDATA[
						<p>update for the folks.</p>
<p>when I updated to x3 I noticed a slight change. So if anyone want this feature to work they now should be looking for this code&#8230;</p>
<p><code>&lt;?php echo x_get_option( &#039;x_footer_content&#039; ); ?&gt;</code></p>
<p>instead of this code&#8230;</p>
<p><code>&lt;?php echo get_theme_mod( &#039;x_footer_content&#039; ); ?&gt;</code></p>
<p>and it would be changed to this code&#8230;</p>
<p><code>&lt;?php echo do_shortcode(x_get_option( &#039;x_footer_content&#039; )); ?&gt;</code></p>
<p>OK GooGoo?</p>
<p>With Best Regards,</p>
<p>-carmine</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-146059</guid>
					<title><![CDATA[Reply To: shortcodes in footer]]></title>
					<link>https://theme.co/archive/forums/topic/shortcodes-in-footer/#post-146059</link>
					<pubDate>Sun, 16 Nov 2014 11:23:38 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Carmine thank you for your contribution.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

