<?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>Designer&#039;s lab</title>
	<atom:link href="http://www.sweet-web-design.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sweet-web-design.com/wordpress</link>
	<description>do { enjoy(); } while ( designing == play );</description>
	<lastBuildDate>Thu, 15 Apr 2021 12:49:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>

<image>
	<url>https://i0.wp.com/www.sweet-web-design.com/wordpress/wp-content/uploads/2026/02/swd-site-icon-512.png?fit=32%2C32&#038;ssl=1</url>
	<title>Designer&#039;s lab</title>
	<link>https://www.sweet-web-design.com/wordpress</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73417487</site>	<item>
		<title>How to add responsive images to Advanced Custom Fields in WordPress</title>
		<link>https://www.sweet-web-design.com/wordpress/how-to-add-responsive-images-to-advanced-custom-fields-in-wordpress/3805/</link>
					<comments>https://www.sweet-web-design.com/wordpress/how-to-add-responsive-images-to-advanced-custom-fields-in-wordpress/3805/#respond</comments>
		
		<dc:creator><![CDATA[Julia]]></dc:creator>
		<pubDate>Thu, 15 Apr 2021 12:49:09 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Advanced Custom Fields]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[responsieve]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://www.sweet-web-design.com/wordpress/?p=3805</guid>

					<description><![CDATA[<p>Advanced Custom Fields is a popular plugin when developing for WordPress. And sometimes it requires a little more than just adding a title or some content on pages and posts. My case was to allow admin users to add or customize images. Those images should be responsive with all required attributes (to pass Google Page [&#8230;]</p>
The post <a href="https://www.sweet-web-design.com/wordpress/how-to-add-responsive-images-to-advanced-custom-fields-in-wordpress/3805/">How to add responsive images to Advanced Custom Fields in WordPress</a> first appeared on <a href="https://www.sweet-web-design.com/wordpress">Designer's lab</a>.]]></description>
		
					<wfw:commentRss>https://www.sweet-web-design.com/wordpress/how-to-add-responsive-images-to-advanced-custom-fields-in-wordpress/3805/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3805</post-id>	</item>
		<item>
		<title>WordPress: how to get number of queries</title>
		<link>https://www.sweet-web-design.com/wordpress/wordpress-how-to-get-number-of-queries/3761/</link>
					<comments>https://www.sweet-web-design.com/wordpress/wordpress-how-to-get-number-of-queries/3761/#respond</comments>
		
		<dc:creator><![CDATA[Julia]]></dc:creator>
		<pubDate>Thu, 17 Dec 2020 19:34:20 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[get_num_queries]]></category>
		<category><![CDATA[number of queries]]></category>
		<category><![CDATA[request]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://www.sweet-web-design.com/wordpress/?p=3761</guid>

					<description><![CDATA[<p>Page load time has been a hot topic for website improvement. Slow sites kill conversion. When you need to define how performant your code is, one of metric to check is&#160;the number of queries to the database. The first thing to start with is enabling&#160;SAVEQUERIES &#160;in your wp-config.php file: With this setting all queries will [&#8230;]</p>
The post <a href="https://www.sweet-web-design.com/wordpress/wordpress-how-to-get-number-of-queries/3761/">WordPress: how to get number of queries</a> first appeared on <a href="https://www.sweet-web-design.com/wordpress">Designer's lab</a>.]]></description>
		
					<wfw:commentRss>https://www.sweet-web-design.com/wordpress/wordpress-how-to-get-number-of-queries/3761/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3761</post-id>	</item>
		<item>
		<title>WP_Query and WordPress site speed loading</title>
		<link>https://www.sweet-web-design.com/wordpress/wp-query-wordpress-site-speed/3744/</link>
					<comments>https://www.sweet-web-design.com/wordpress/wp-query-wordpress-site-speed/3744/#respond</comments>
		
		<dc:creator><![CDATA[Julia]]></dc:creator>
		<pubDate>Tue, 24 Nov 2020 13:43:25 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[update_post_meta_cache]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp_query]]></category>
		<guid isPermaLink="false">http://www.sweet-web-design.com/wordpress/?p=3744</guid>

					<description><![CDATA[<p>You can find so many articles online titled &#8220;How to Optimize your website powered by WordPress&#8221;. I&#8217;d like, however, show you one more advanced solution how a developer can optimize a theme. I usually make my own queries using the&#160;WP_Query&#160;class. For example, you may want to get the 6 latest posts and display them on [&#8230;]</p>
The post <a href="https://www.sweet-web-design.com/wordpress/wp-query-wordpress-site-speed/3744/">WP_Query and WordPress site speed loading</a> first appeared on <a href="https://www.sweet-web-design.com/wordpress">Designer's lab</a>.]]></description>
		
					<wfw:commentRss>https://www.sweet-web-design.com/wordpress/wp-query-wordpress-site-speed/3744/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3744</post-id>	</item>
		<item>
		<title>WordPress pagination with paginate_links: customization</title>
		<link>https://www.sweet-web-design.com/wordpress/wordpress-pagination-with-paginate-links-customization/3717/</link>
					<comments>https://www.sweet-web-design.com/wordpress/wordpress-pagination-with-paginate-links-customization/3717/#respond</comments>
		
		<dc:creator><![CDATA[Julia]]></dc:creator>
		<pubDate>Wed, 28 Oct 2020 14:26:39 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[paginate_links]]></category>
		<category><![CDATA[pagination]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://www.sweet-web-design.com/wordpress/?p=3717</guid>

					<description><![CDATA[<p>The problem: the function paginate_links($arg = &#8221; ); creates paginated link list which looks like: *Here is my code: Now I&#8217;d like to stylish my pagination to, say, typical Bootstrap look &#38; feel. In other words, instead of unordered list with class named &#8216;page-numbers&#8216; should be list with class &#8216;pagination&#8216; (or any you want). Here [&#8230;]</p>
The post <a href="https://www.sweet-web-design.com/wordpress/wordpress-pagination-with-paginate-links-customization/3717/">WordPress pagination with paginate_links: customization</a> first appeared on <a href="https://www.sweet-web-design.com/wordpress">Designer's lab</a>.]]></description>
		
					<wfw:commentRss>https://www.sweet-web-design.com/wordpress/wordpress-pagination-with-paginate-links-customization/3717/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3717</post-id>	</item>
		<item>
		<title>Pagination and a custom post type wp_query</title>
		<link>https://www.sweet-web-design.com/wordpress/pagination-and-a-custom-post-type-wp_query/3689/</link>
					<comments>https://www.sweet-web-design.com/wordpress/pagination-and-a-custom-post-type-wp_query/3689/#respond</comments>
		
		<dc:creator><![CDATA[Julia]]></dc:creator>
		<pubDate>Tue, 27 Oct 2020 13:46:09 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[pagination]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp_query]]></category>
		<guid isPermaLink="false">http://www.sweet-web-design.com/wordpress/?p=3689</guid>

					<description><![CDATA[<p>Do you need to display the posts with pagination without any plugin? I&#8217;ll show you how. WP_Query&#160;uses public query variables to construct the main query according to the page being requested. *To see all the public query variables, print this: The function get_query_var()&#160;is used to get the values from those public query variables (this case [&#8230;]</p>
The post <a href="https://www.sweet-web-design.com/wordpress/pagination-and-a-custom-post-type-wp_query/3689/">Pagination and a custom post type wp_query</a> first appeared on <a href="https://www.sweet-web-design.com/wordpress">Designer's lab</a>.]]></description>
		
					<wfw:commentRss>https://www.sweet-web-design.com/wordpress/pagination-and-a-custom-post-type-wp_query/3689/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3689</post-id>	</item>
	</channel>
</rss>
