<?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 &#8211; Extreme Web Designs</title>
	<atom:link href="https://theextremewebdesigns.com/blog/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://theextremewebdesigns.com/blog</link>
	<description>Web Design and Web Development</description>
	<lastBuildDate>Tue, 22 Jan 2013 01:48:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.5</generator>
<site xmlns="com-wordpress:feed-additions:1">156673191</site>	<item>
		<title>WordPress Display Thumbnail for Post (2 Ways)</title>
		<link>https://theextremewebdesigns.com/blog/wordpress-display-thumbnail-for-post-2-ways/</link>
					<comments>https://theextremewebdesigns.com/blog/wordpress-display-thumbnail-for-post-2-ways/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 22 Jan 2013 01:48:15 +0000</pubDate>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-snippets]]></category>
		<category><![CDATA[wordpress-tips]]></category>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=98</guid>

					<description><![CDATA[Did you ever want to make WordPress display Thumbnail for post but did not know how to do it? I am going to discuss 2 ways to do this. Just copy this snippet into your theme, wherever you want to display the thumbnail and that should do it. Method 1: if (has_post_thumbnail()) { $thumb = wp_get_attachment_image_src(get_post_thumbnail_id(), 'thumbnail_name'); // [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Did you ever want to make <em><strong>WordPress display Thumbnail for post </strong></em>but did not know how to do it? I am going to discuss 2 ways to do this. Just copy this snippet into your theme, wherever you want to <strong>display the thumbnail</strong> and that should do it.<span id="more-98"></span></p>
<p><strong>Method 1:</strong></p>
<pre class="lang:php decode:true">if (has_post_thumbnail())
{
$thumb = wp_get_attachment_image_src(get_post_thumbnail_id(), 'thumbnail_name');
// This gives the thumbnail url
echo $thumb[0];
}</pre>
<p><strong>Method 2:</strong></p>
<pre class="lang:php decode:true">&lt;?php
if(has_post_thumbnail())
{
the_post_thumbnail();
}
?&gt;</pre>
<p>Do you know of any better method or a new method to <strong>display thumbnail for a post in WordPress</strong>? If yes, please share it with us in your comment below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theextremewebdesigns.com/blog/wordpress-display-thumbnail-for-post-2-ways/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">98</post-id>	</item>
		<item>
		<title>WordPress: Get all Categories of a post (both parent and children/sub categories)</title>
		<link>https://theextremewebdesigns.com/blog/wordpress-get-all-categories-of-a-post/</link>
					<comments>https://theextremewebdesigns.com/blog/wordpress-get-all-categories-of-a-post/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 19 Jan 2013 13:47:16 +0000</pubDate>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[tips-tricks]]></category>
		<category><![CDATA[wordpress-snippets]]></category>
		<category><![CDATA[wordpress-tips]]></category>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=112</guid>

					<description><![CDATA[Have you ever wondered how to retrieve or get all categories of a post?  This little snippet will help you make WordPress get all Categories of a post (both parent and children/sub categories). WordPress: Get all Categories of a post (both parent and children/sub categories) &#60;?php the_category(', '); ?&#62; Do you know of any other way to [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Have you ever wondered how to retrieve or get all categories of a post?  This little snippet will help you make WordPress get all Categories of a post (both parent and children/sub categories).<span id="more-112"></span></p>
<h2>WordPress: Get all Categories of a post (both parent and children/sub categories)</h2>
<pre class="lang:php decode:true">&lt;?php the_category(', '); ?&gt;</pre>
<p>Do you know of any other way to  <strong>fetch both parent and children/sub categories of a post</strong>? If yes, please share it with us in your comment below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theextremewebdesigns.com/blog/wordpress-get-all-categories-of-a-post/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">112</post-id>	</item>
		<item>
		<title>Call / Include / Load Latest jQuery Version in WordPress Theme / Plugin</title>
		<link>https://theextremewebdesigns.com/blog/call-include-load-latest-jquery-version-in-wordpress-theme-plugin/</link>
					<comments>https://theextremewebdesigns.com/blog/call-include-load-latest-jquery-version-in-wordpress-theme-plugin/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 12 Jul 2012 10:42:40 +0000</pubDate>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[latest-jquery-google-cdn]]></category>
		<category><![CDATA[wordpress-snippets]]></category>
		<category><![CDATA[wordpress-tips]]></category>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=1036</guid>

					<description><![CDATA[If you are wondering how to Call / Include / Load Latest jQuery Version in WordPress Theme / Plugin, then look no further! In this article, I am going to share a very simple way that use can use to always load the latest jQuery version either in your Theme or Plugin or both. Read on [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>If you are wondering how to <strong>Call / Include / Load Latest jQuery Version in WordPress Theme / Plugin</strong>, then look no further! In this article, I am going to share a very simple way that use can use to always load the latest jQuery version either in your Theme or Plugin or both. Read on to find out more.<span id="more-1036"></span></p>
<h2>How to Call / Include / Load Latest jQuery Version in WordPress Theme / Plugin</h2>
<p>One of the strongest reason to include latest jQuery version is to take advantage of new features that jQuery offers without having to manually change the link pointer to latest jQuery version. That said, following are the ways to load latest jQuery version in WordPress:</p>
<h3>Load Latest jQuery Version in WordPress Theme:</h3>
<p>Paste the following code in your theme&#8217;s function.php file:</p>
<pre class="lang:php decode:true">function ewd_load_js()
{
if ( !is_admin() )
{
wp_deregister_script( 'jquery' );

wp_register_script('jquery', 'http://code.jquery.com/jquery-latest.min.js');

wp_enqueue_script('jquery');
}
}

add_action('wp_enqueue_scripts', 'ewd_load_js');</pre>
<h3>Load Latest jQuery Version in WordPress Plugin</h3>
<p>Or if you need the latest jQuery version to be loaded in your custom plugin, then simply paste the following code in your plugin&#8217;s main file:</p>
<pre class="lang:php decode:true">function ewd_load_js_plugin()
{
wp_deregister_script( 'jquery' );

wp_register_script('jquery', 'http://code.jquery.com/jquery-latest.min.js');

wp_enqueue_script('jquery');

}

add_action('wp_enqueue_scripts', 'ewd_load_js_plugin');</pre>
<h3>Load JavaScript(s) in Footer</h3>
<pre class="lang:xhtml decode:true crayon-selected">function ewd_load_js_plugin()
{
wp_deregister_script( 'jquery' );

wp_register_script('jquery', 'http://code.jquery.com/jquery-latest.min.js', 'false', 'false', true);

wp_enqueue_script('jquery');

}

add_action('wp_enqueue_scripts', 'ewd_load_js_plugin');</pre>
<p>So what is different in the above code? Well, if you pay close attention, we now have some new arguments appended in the wp_register_scripts function. Especially the argument &#8220;true&#8221;.  This corresponds to the $in_footer variable and it is this value that is responsible loading the scripts in footer. Here would be the actual usage of wp_register_script:</p>
<pre class="lang:php decode:true ">&lt;?php wp_register_script( $handle, $src, $deps, $ver, $in_footer ); ?&gt;</pre>
<p>$handle &#8211; Name of the script</p>
<p>$src &#8211; URL to script</p>
<p>$deps &#8211; Array of handles of all the registered scripts that this script depends on, that is the scripts that must be loaded before this script.</p>
<p>$ver &#8211; String specifying the script version number, if it has one, which is concatenated to the end of the path as a query string.</p>
<p>$in_footer &#8211; Normally scripts are placed in the &lt;head&gt; section. If this parameter is true the script is placed at the bottom of the &lt;body&gt;. This requires the theme to have the wp_footer() hook in the appropriate place.</p>
<h5>Your turn!</h5>
<p>Do you know of any other ways to <em><strong>Call / Include / Load Latest jQuery Version in WordPress Theme / Plugin</strong></em>? Feel free to suggest by commenting below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theextremewebdesigns.com/blog/call-include-load-latest-jquery-version-in-wordpress-theme-plugin/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1036</post-id>	</item>
		<item>
		<title>WordPress: Add Content After Post Automatically</title>
		<link>https://theextremewebdesigns.com/blog/wordpress-add-content-after-post-automatically/</link>
					<comments>https://theextremewebdesigns.com/blog/wordpress-add-content-after-post-automatically/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 29 May 2012 15:04:56 +0000</pubDate>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-snippets]]></category>
		<category><![CDATA[wordpress-tips]]></category>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=657</guid>

					<description><![CDATA[WordPress Add Content After Post Automatically &#8211; If you are a WordPress theme developer, at some point of time or other, you may have wanted to add content after post automatically. Here is a neat snippet that let&#8217;s you do exactly that with just few lines of code. WordPress Add Content After Post Automatically The solution provided [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>WordPress Add Content After Post Automatically</strong> &#8211; If you are a WordPress theme developer, at some point of time or other, you may have wanted to <strong>add content after post automatically.</strong> Here is a neat snippet that let&#8217;s you do exactly that with just few lines of code.<span id="more-657"></span></p>
<h2>WordPress Add Content After Post Automatically</h2>
<p>The solution provided here does not require you to edit the actual theme files. Simply copy the following code in the functions.php file of your theme, write the content that you want to be shown and you are done.</p>
<pre class="lang:php decode:true">function insert_custom_content($content)
{
if(!is_feed() &amp;&amp; !is_home()) {
$content.= "&lt;div class='custom_content'&gt;";
$content.= "&lt;h3&gt;Some heading&lt;/h3&gt;";
$content.= "&lt;p&gt;This is a custom content that appears at the end of every article.&lt;/p&gt;";
$content.= "&lt;/div&gt;";
}

return $content;
}
add_filter ('the_content', 'insert_custom_content');</pre>
<p>Very simple, isn&#8217;t it?</p>
<p><strong>That&#8217;s it!</strong></p>
<p>Do you know of any other ways to <strong>add content after post automatically in WordPress</strong>? Feel free to share your suggestions by commenting below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theextremewebdesigns.com/blog/wordpress-add-content-after-post-automatically/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">657</post-id>	</item>
		<item>
		<title>WordPress Change default mail sender</title>
		<link>https://theextremewebdesigns.com/blog/wordpress-change-default-mail-sender/</link>
					<comments>https://theextremewebdesigns.com/blog/wordpress-change-default-mail-sender/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 19 Feb 2012 11:27:13 +0000</pubDate>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-snippets]]></category>
		<category><![CDATA[wordpress-tips]]></category>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=316</guid>

					<description><![CDATA[When you install a new WordPress blog, WordPress stores the email address that you provide during the initial setup and uses it on all outgoing email notifications. To keep it professional, you can change it to a different email of your choice by using this snippet. How to Change default mail sender in WordPress In [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>When you install a new WordPress blog, WordPress stores the email address that you provide during the initial setup and uses it on all outgoing email notifications. To keep it professional, you can change it to a different email of your choice by using this snippet.<span id="more-316"></span></p>
<h2>How to Change default mail sender in WordPress</h2>
<p>In functions.php file of your WordPress theme, simply paste the following code and change the email and domain name to reflect your actual information:</p>
<pre class="lang:php decode:true">function new_email_from()
{
return 'name@yourdomain.com';
}

function new_email_from_name()
{
return 'Your Domain name';
}

add_filter('wp_mail_from', 'new_email_from');
add_filter('wp_mail_from_name', 'new_email_from_name');</pre>
<h5>Your turn!</h5>
<p>Do you know of any other way to <em><strong>change the default email address in WordPress</strong></em>? If yes, please feel free to share by commenting below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theextremewebdesigns.com/blog/wordpress-change-default-mail-sender/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">316</post-id>	</item>
		<item>
		<title>WordPress: Total post count of a Category and its Child Categories</title>
		<link>https://theextremewebdesigns.com/blog/wordpress-total-post-count-of-a-category-and-its-child-categories/</link>
					<comments>https://theextremewebdesigns.com/blog/wordpress-total-post-count-of-a-category-and-its-child-categories/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 10 Feb 2012 23:38:45 +0000</pubDate>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-snippets]]></category>
		<category><![CDATA[wordpress-tips]]></category>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=266</guid>

					<description><![CDATA[It may be desirable to show how may posts a Category contains in it &#38; also display the post count that the child categories of this (parent) category contains. So in WordPress to display total post count of a Category and its Child Categories, use the following little snippet of code. How to get total [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>It may be desirable to show how may posts a Category contains in it &amp; also display the post count that the child categories of this (parent) category contains. So in <em><strong>WordPress to display total post count of a Category and its Child Categories</strong></em>, use the following little snippet of code.<span id="more-266"></span></p>
<h2>How to get total post count of a Category and its Child Categories in WordPress</h2>
<p>Simply paste the following snippet in functions.php file of your WordPress theme:</p>
<pre class="lang:php decode:true">&lt;?php

function get_post_count($id)
{

$count = 0;
$taxonomy = 'category';
$args = array(
'child_of' =&gt; $id,
);
$tax_terms = get_terms($taxonomy,$args);
foreach ($tax_terms as $tax_term) {
$count +=$tax_term-&gt;count;
}
return $count;

}

?&gt;</pre>
<p>Then simply paste the following code to display the post count of the Category that you desire &amp; it&#8217;s child categories. Simply paste the following code where you want the posts count to appear in your WordPress theme:</p>
<pre class="lang:php decode:true">&lt;?php

// To get post count of category having category id 10.
//Change 10 to a number of your choice
echo get_post_count(10);

?&gt;</pre>
<h5>Your Turn!</h5>
<p>Do you know of any other ways to <em><strong>get total post count of a Category and its Child Categories in WordPress</strong></em>? If yes, please feel free to share by commenting below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theextremewebdesigns.com/blog/wordpress-total-post-count-of-a-category-and-its-child-categories/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">266</post-id>	</item>
		<item>
		<title>WordPress: Limit excerpt length</title>
		<link>https://theextremewebdesigns.com/blog/wordpress-limit-excerpt-length/</link>
					<comments>https://theextremewebdesigns.com/blog/wordpress-limit-excerpt-length/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 10 Feb 2012 23:22:20 +0000</pubDate>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-snippets]]></category>
		<category><![CDATA[wordpress-tips]]></category>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=261</guid>

					<description><![CDATA[Have you ever thought of showing limited information about an article on the homepage of your blog? This limited information is called &#8220;Excerpt&#8221;. It can also be called as a &#8220;Post summary&#8221; or &#8220;Description of a post&#8221;. Here is a little snippet that will let you, in WordPress, limit excerpt length. How to Limit excerpt length [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Have you ever thought of showing limited information about an article on the homepage of your blog? This limited information is called &#8220;Excerpt&#8221;. It can also be called as a &#8220;Post summary&#8221; or &#8220;Description of a post&#8221;. Here is a little snippet that will let you, in WordPress, limit excerpt length.<span id="more-261"></span></p>
<h2>How to Limit excerpt length in WordPress</h2>
<p>Simply paste the following function into functions.php file of your WordPress theme:</p>
<pre class="lang:php decode:true">&lt;?php

function limit_excerpt_length($string, $word_limit)
{
$words = explode(' ', $string);

return implode( ' ', array_slice($words, 0, $word_limit) );

}

?&gt;</pre>
<p>Then simply paste the following line of code in your theme, where you want to limit the excerpt length (most commonly used in index.php file)</p>
<pre class="lang:php decode:true">&lt;?php
//Simply change the number 50 to a number of your choice to limit the excerpt length
//up to the specified number
echo limit_excerpt_length(get_the_excerpt(),  '50');
?&gt;</pre>
<h5>Your turn!</h5>
<p>Do you know of any other ways to limit the excerpt length in WordPress? If yes, please feel free to share with us by commenting below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theextremewebdesigns.com/blog/wordpress-limit-excerpt-length/feed/</wfw:commentRss>
			<slash:comments>46</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">261</post-id>	</item>
		<item>
		<title>WordPress Change logo on Login page (2 Ways)</title>
		<link>https://theextremewebdesigns.com/blog/wordpress-change-logo-on-login-page/</link>
					<comments>https://theextremewebdesigns.com/blog/wordpress-change-logo-on-login-page/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 03 Feb 2012 23:50:20 +0000</pubDate>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-snippets]]></category>
		<category><![CDATA[wordpress-tips]]></category>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=127</guid>

					<description><![CDATA[If you ever wanted to make WordPress change logo on Login page or customize it, this snippet can help you.  How to Change logo on Login page using WordPress Note the following WordPress logo on the login page. To change it, just add the follow inside of your theme’s functions.php file. If you don’t have this [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>If you ever wanted to make WordPress change logo on Login page or customize it, this snippet can help you. <span id="more-127"></span></p>
<h2>How to Change logo on Login page using WordPress</h2>
<p>Note the following WordPress logo on the login page.<br />
<a href="https://theextremewebdesigns.com/blog/wp-content/uploads/2012/02/wordpress_change_default_logo.png" class="broken_link"><img fetchpriority="high" decoding="async" class="aligncenter size-medium wp-image-129" title="Wordpress: Change/Customize Default Logo" alt="Wordpress: Change/Customize Default Logo" src="https://theextremewebdesigns.com/blog/wp-content/uploads/2012/02/wordpress_change_default_logo-300x258.png" width="300" height="258" /></a></p>
<p>To change it, just add the follow inside of your theme’s functions.php file. If you don’t have this functions.php file, then manually create one.</p>
<pre class="lang:php decode:true">&lt;?php
function customize_login_logo()
{
//Method 1:
echo '&lt;img src="'. get_template_directory_uri() .'/images/logo.jpg" /&gt;';

//Method 2:
echo '&lt;img src="'. get_bloginfo('template_directory') .'/images/logo.jpg" /&gt;';
}
add_action('login_head', 'customize_login_logo');
?&gt;</pre>
<p>If you would like the logo to link back to the blog site, you may use the enhanced code below:</p>
<pre class="lang:php decode:true">&lt;?php
function customize_login_logo()
{
//Method 1:
echo '&lt;a href="'. get_bloginfo( 'siteurl' ) .'"&gt;
&lt;img src="'. get_template_directory_uri() .'/images/logo.jpg" /&gt;
&lt;/a&gt;';

//Method 2:
echo '&lt;a href="'.get_bloginfo( 'siteurl' ) . '"&gt;
&lt;img src="'. get_bloginfo('template_directory') .'/images/logo.jpg" /&gt;
&lt;/a&gt;';
}
add_action('login_head', 'customize_login_logo');
?&gt;</pre>
<h5>That&#8217;s it!</h5>
<p>Do you know of any other way to change or <em><strong>customize the logo on WordPress Login page</strong></em>? If yes, please share it with us in your comments below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theextremewebdesigns.com/blog/wordpress-change-logo-on-login-page/feed/</wfw:commentRss>
			<slash:comments>31</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">127</post-id>	</item>
		<item>
		<title>Remove WordPress.org link From Register/Login Pages</title>
		<link>https://theextremewebdesigns.com/blog/remove-wordpress-org-link-from-registerlogin-page/</link>
					<comments>https://theextremewebdesigns.com/blog/remove-wordpress-org-link-from-registerlogin-page/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 03 Feb 2012 23:12:06 +0000</pubDate>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-snippets]]></category>
		<category><![CDATA[wordpress-tips]]></category>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=121</guid>

					<description><![CDATA[If you have noticed, by default the links/logo point to wordpress site in Register/Login pages or in some of the default WordPress themes. Did you ever wonder how can remove WordPress.org link? If yes, then the following snippet of code can help you. How to Remove WordPress.org link from Register/Login page Just add the follow inside [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>If you have noticed, by default the links/logo point to wordpress site in Register/Login pages or in some of the default WordPress themes. Did you ever wonder how can remove WordPress.org link? If yes, then the following snippet of code can help you. <span id="more-121"></span></p>
<h2>How to Remove WordPress.org link from Register/Login page</h2>
<p>Just add the follow inside of your theme&#8217;s functions.php file. If you don&#8217;t have this functions.php file, then manually create one.</p>
<pre class="lang:php decode:true">&lt;?php //This code goes in functions.php file of your theme
function customize_url( $url )
{
//This changes link to the current site url.
return get_bloginfo( 'url' );
}
add_filter( 'login_headerurl', 'customize_url' );
?&gt;</pre>
<p>In you want to change the link to point to a custom url, then you may use the following code:</p>
<pre class="lang:php decode:true">&lt;?php //This code goes in functions.php file of your theme
function customize_url( $url )
{
//Change the value within the single quotes below to your desired domain name
return 'http://www.mydomain.com';
}
add_filter( 'login_headerurl', 'customize_url' );
?&gt;</pre>
<p>Note: &#8220;login_headerurl&#8221; can be called as a filter that is used to filter the url.</p>
<h5>Your Turn!</h5>
<p>Do you know of any other ways to <em><strong>remove WordPress.org link from Register/Login page</strong></em>? If yes, please share it with us in your comment below.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theextremewebdesigns.com/blog/remove-wordpress-org-link-from-registerlogin-page/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">121</post-id>	</item>
		<item>
		<title>WordPress: Display Blogroll without default heading</title>
		<link>https://theextremewebdesigns.com/blog/wordpress-display-blogroll-without-default-heading/</link>
					<comments>https://theextremewebdesigns.com/blog/wordpress-display-blogroll-without-default-heading/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 03 Feb 2012 21:22:41 +0000</pubDate>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-snippets]]></category>
		<category><![CDATA[wordpress-tips]]></category>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=87</guid>

					<description><![CDATA[Did you ever want to make WordPress display Blogroll without default heading but could not find a way to do this? Here&#8217;s a little snippet that you can copy and paste in your theme to instantly generate a Blogroll without the default heading. How to Display Blogroll without default heading using WordPress You can actually [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Did you ever want to make WordPress display Blogroll without default heading but could not find a way to do this? Here&#8217;s a little snippet that you can copy and paste in your theme to instantly generate a Blogroll without the default heading.<span id="more-87"></span></p>
<h2>How to Display Blogroll without default heading using WordPress</h2>
<p>You can actually display the default Blogroll without it&#8217;s default heading in WordPress. Simply copy the code below and paste it in sidebar.php file of your theme or where you want the Blogroll to appear without the default heading.</p>
<pre class="lang:xhtml decode:true">&lt;ul&gt;
&lt;?php wp_list_bookmarks('title_li=&amp;categorize=0'); ?&gt;
&lt;/ul&gt;</pre>
<h5>Your Turn!</h5>
<p>Do you know of any different or more simple way to <strong>display Blogroll without default heading in WordPress</strong>? If yes, please share it with us by commenting below.<br />
*Make sure that you wrap your code in &lt;code&gt;&lt;/code&gt; tags.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://theextremewebdesigns.com/blog/wordpress-display-blogroll-without-default-heading/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">87</post-id>	</item>
	</channel>
</rss>
