<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WordPress Archives - ubuntu|dog</title>
	<atom:link href="https://ubuntudog.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://ubuntudog.com/category/wordpress/</link>
	<description>Knowledge is power</description>
	<lastBuildDate>Fri, 20 Dec 2024 22:25:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>

<image>
	<url>https://media.ubuntudog.com/2019/11/cropped-favicon-32x32.png</url>
	<title>WordPress Archives - ubuntu|dog</title>
	<link>https://ubuntudog.com/category/wordpress/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Disable sf-menu (superfish dropdown menu) for Thematic theme</title>
		<link>https://ubuntudog.com/disable-sf-menu-superfish-dropdown-menu-for-thematic-theme/</link>
		
		<dc:creator><![CDATA[dean]]></dc:creator>
		<pubDate>Sun, 24 Nov 2019 20:51:48 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://ubuntudog.com/?p=163</guid>

					<description><![CDATA[<p>Just put the code below at the bottom of your functions.php file: Code: // Filter away the default scripts loaded with Thematic function childtheme_head_scripts() { // Abscence makes the heart grow fonder } add_filter(&#8216;thematic_head_scripts&#8217;,&#8217;childtheme_head_scripts&#8217;);</p>
<p>The post <a href="https://ubuntudog.com/disable-sf-menu-superfish-dropdown-menu-for-thematic-theme/">Disable sf-menu (superfish dropdown menu) for Thematic theme</a> appeared first on <a href="https://ubuntudog.com">ubuntu|dog</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Just put the code below at the bottom of your <strong>functions.php</strong> file:</p>
<p class="code_header">Code:</p>
<blockquote>
<div class="code">// Filter away the default scripts loaded with Thematic<br />
function childtheme_head_scripts() {<br />
// Abscence makes the heart grow fonder<br />
}<br />
add_filter(&#8216;thematic_head_scripts&#8217;,&#8217;childtheme_head_scripts&#8217;);</div>
</blockquote>
<p>The post <a href="https://ubuntudog.com/disable-sf-menu-superfish-dropdown-menu-for-thematic-theme/">Disable sf-menu (superfish dropdown menu) for Thematic theme</a> appeared first on <a href="https://ubuntudog.com">ubuntu|dog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to remove front page title for Thematic theme in WordPress?</title>
		<link>https://ubuntudog.com/how-to-remove-front-page-title-for-thematic-theme-in-wordpress/</link>
		
		<dc:creator><![CDATA[dean]]></dc:creator>
		<pubDate>Sun, 24 Nov 2019 20:51:04 +0000</pubDate>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://ubuntudog.com/?p=161</guid>

					<description><![CDATA[<p>Have you ever wanted to remove the title only for front page in WordPress? Are you using Thematic theme? Than I have good news for you. Use this function to remove the title only on the first page of your Thematic theme in WordPress: Code: function remove_front_pagetitle($posttitle) { if ( is_front_page() ) { $posttitle = ... <a title="How to remove front page title for Thematic theme in WordPress?" class="read-more" href="https://ubuntudog.com/how-to-remove-front-page-title-for-thematic-theme-in-wordpress/" aria-label="Read more about How to remove front page title for Thematic theme in WordPress?">Read more</a></p>
<p>The post <a href="https://ubuntudog.com/how-to-remove-front-page-title-for-thematic-theme-in-wordpress/">How to remove front page title for Thematic theme in WordPress?</a> appeared first on <a href="https://ubuntudog.com">ubuntu|dog</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Have you ever wanted to remove the title only for front page in WordPress? Are you using Thematic theme? Than I have good news for you. Use this function to remove the title only on the first page of your Thematic theme in WordPress:</p>
<p class="code_header">Code:</p>
<blockquote>
<div class="code">function remove_front_pagetitle($posttitle) {<br />
if ( is_front_page() ) {<br />
$posttitle = &#8221;;<br />
}<br />
return $posttitle;<br />
}<br />
add_filter(&#8216;thematic_postheader_posttitle&#8217;, &#8216;remove_front_pagetitle&#8217;);</div>
</blockquote>
<p>The code above should be put in functions.php<br />
You can paste it in the bottom of the functions-file.</p>
<p>The post <a href="https://ubuntudog.com/how-to-remove-front-page-title-for-thematic-theme-in-wordpress/">How to remove front page title for Thematic theme in WordPress?</a> appeared first on <a href="https://ubuntudog.com">ubuntu|dog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
