<?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 - Nicholas Rowe</title>
	<atom:link href="https://www.nicholas-rowe.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.nicholas-rowe.com/tag/wordpress/</link>
	<description>CEO &#38; Co-Founder - Saigon Digital</description>
	<lastBuildDate>Mon, 17 Nov 2014 18:02:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.nicholas-rowe.com/wp-content/uploads/2025/12/cropped-nick-whitebg-e1765901896660-32x32.png</url>
	<title>wordpress Archives - Nicholas Rowe</title>
	<link>https://www.nicholas-rowe.com/tag/wordpress/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>One thing you didn&#8217;t know about WordPress images.</title>
		<link>https://www.nicholas-rowe.com/one-thing-you-didnt-know-about-wordpress-images/</link>
					<comments>https://www.nicholas-rowe.com/one-thing-you-didnt-know-about-wordpress-images/#respond</comments>
		
		<dc:creator><![CDATA[Nicholas Rowe]]></dc:creator>
		<pubDate>Fri, 27 Sep 2013 20:59:59 +0000</pubDate>
				<category><![CDATA[Wordpress Development]]></category>
		<category><![CDATA[Wordpress Theming]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[JPEG]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://nicholas-rowe.com/?p=255</guid>

					<description><![CDATA[<p>By default in WordPress when you server up a .JPEG file, WordPress optimizes the image to save bandwidth and space. 90% of the time, no one will realize this as the WordPress function behind image optimization does a fantastic job at keeping it&#8217;s quality the same, unless you are using very large high quality photo [&#8230;]</p>
<p>The post <a href="https://www.nicholas-rowe.com/one-thing-you-didnt-know-about-wordpress-images/">One thing you didn&#8217;t know about WordPress images.</a> appeared first on <a href="https://www.nicholas-rowe.com">Nicholas Rowe</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>By default in WordPress when you server up a .JPEG file, WordPress optimizes the image to save bandwidth and space. 90% of the time, no one will realize this as the WordPress function behind image optimization does a fantastic job at keeping it&#8217;s quality the same, unless you are using very large high quality photo .jpeg files.</p>
<p>By default WordPress uses a default quality of 90%, if you wish to revert the image quality throw the following function in your functions.php file:</p>
<pre>
add_filter( 'jpeg_quality', 'smashing_jpeg_quality' );
function smashing_jpeg_quality() {
return 100;
}
</pre>
<p>The post <a href="https://www.nicholas-rowe.com/one-thing-you-didnt-know-about-wordpress-images/">One thing you didn&#8217;t know about WordPress images.</a> appeared first on <a href="https://www.nicholas-rowe.com">Nicholas Rowe</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.nicholas-rowe.com/one-thing-you-didnt-know-about-wordpress-images/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Change the default excerpt length of 55 words.</title>
		<link>https://www.nicholas-rowe.com/change-the-default-excerpt-length-of-55-words/</link>
					<comments>https://www.nicholas-rowe.com/change-the-default-excerpt-length-of-55-words/#respond</comments>
		
		<dc:creator><![CDATA[Nicholas Rowe]]></dc:creator>
		<pubDate>Wed, 16 Jan 2013 17:14:55 +0000</pubDate>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[the_excerpt]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://nicholas-rowe.com/?p=153</guid>

					<description><![CDATA[<p>By default&#160;the_excerpt&#160;length is 55 words. Sometimes I want to give my readers a longer excerpt length, depending on font-size and other element sizes, you could make the little teaser somewhat longer. The below code creates overwrite the_excerpt and will return as many words as you desire. function new_excerpt_length($length) { return 100; } add_filter('excerpt_length', 'new_excerpt_length'); Change [&#8230;]</p>
<p>The post <a href="https://www.nicholas-rowe.com/change-the-default-excerpt-length-of-55-words/">Change the default excerpt length of 55 words.</a> appeared first on <a href="https://www.nicholas-rowe.com">Nicholas Rowe</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>By default&nbsp;the_excerpt&nbsp;length is 55 words. Sometimes I want to give my readers a longer excerpt length, depending on font-size and other element sizes, you could make the little teaser somewhat longer.</p>
<p>The below code creates overwrite the_excerpt and will return as many words as you desire.</p>
<pre>function new_excerpt_length($length) { 
    return 100;
}

add_filter('excerpt_length', 'new_excerpt_length');</pre>
<p>Change the &#8220;100&#8221; to as much or as little as you want! </p>
<p>The post <a href="https://www.nicholas-rowe.com/change-the-default-excerpt-length-of-55-words/">Change the default excerpt length of 55 words.</a> appeared first on <a href="https://www.nicholas-rowe.com">Nicholas Rowe</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.nicholas-rowe.com/change-the-default-excerpt-length-of-55-words/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
