<?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>mutual{it}y</title>
	<atom:link href="https://themutuality.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://themutuality.com/</link>
	<description>We build technical infrastructure owned by the people who use it. WordPress, PHP, Linux. No vendor churn, no Big Tech dependencies. Worker-owned, cooperative-structured</description>
	<lastBuildDate>Tue, 15 May 2018 19:23:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.3</generator>

<image>
	<url>https://themutuality.com/app/uploads/2026/07/cropped-favicon-32x32.jpg</url>
	<title>mutual{it}y</title>
	<link>https://themutuality.com/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Remove sticky posts from the main loop</title>
		<link>https://themutuality.com/learn/code-snippets/remove-sticky-posts-from-the-main-loop/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 31 Mar 2018 10:16:57 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<guid isPermaLink="false">http://themutuality.com/?p=90</guid>

					<description><![CDATA[<p>function mtly_remove_sticky_posts_from_main_loop( $query ) { if( $query->is_main_query() &#038;& ! is_admin() ) { $query->set( 'ignore_sticky_posts', true ); } } add_action( 'pre_get_posts', 'mtly_remove_sticky_posts_from_main_loop' );</p>
<p>The post <a href="https://themutuality.com/learn/code-snippets/remove-sticky-posts-from-the-main-loop/">Remove sticky posts from the main loop</a> appeared first on <a href="https://themutuality.com">mutual{it}y</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>What is and how to install WP-CLI</title>
		<link>https://themutuality.com/learn/tutorials/what-is-and-how-to-install-wp-cli/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 26 Mar 2018 15:10:34 +0000</pubDate>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">http://themutuality.com/?p=67</guid>

					<description><![CDATA[<p>WP-CLI is command line tool specifically made for WordPress (WP) which provides a command-line interface (CLI) for many actions you might perform to manage your WordPress sites. For example, you can install, activate or update plugins,configure multisite installs and do many things you can’t do in the WordPress admin like deleting transients, database search and &#8230; <a href="https://themutuality.com/learn/tutorials/what-is-and-how-to-install-wp-cli/">Continued</a></p>
<p>The post <a href="https://themutuality.com/learn/tutorials/what-is-and-how-to-install-wp-cli/">What is and how to install WP-CLI</a> appeared first on <a href="https://themutuality.com">mutual{it}y</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Change post date format to time ago in WordPress</title>
		<link>https://themutuality.com/learn/code-snippets/change-post-date-format-to-time-ago-in-wordpress/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 23 Mar 2018 18:40:40 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<guid isPermaLink="false">http://themutuality.com/?p=29</guid>

					<description><![CDATA[<p>Time ago format used on popular social networks could be a good alternative to default WordPress post date format for websites publishing lots of content very frequently. Using function below you can display post publish date in &#8220;time ago&#8221; format like &#8220;3 seconds ago&#8221;, &#8220;7 minutes ago&#8221;, &#8220;6 hours ago&#8221;, &#8220;1 week ago&#8221;, etc. WordPress &#8230; <a href="https://themutuality.com/learn/code-snippets/change-post-date-format-to-time-ago-in-wordpress/">Continued</a></p>
<p>The post <a href="https://themutuality.com/learn/code-snippets/change-post-date-format-to-time-ago-in-wordpress/">Change post date format to time ago in WordPress</a> appeared first on <a href="https://themutuality.com">mutual{it}y</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Customize the Credits Text in Genesis themes</title>
		<link>https://themutuality.com/learn/code-snippets/customize-the-credits-text-in-genesis-themes/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 23 Mar 2018 17:54:50 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<guid isPermaLink="false">http://themutuality.com/?p=21</guid>

					<description><![CDATA[<p>You may use snippet below to customize the credit text in the site footer of your Genesis theme. Code should be placed into your theme’s functions.php file. To change the footer text we need to register a function to a specific filter action. That enables us to modify variable, in this case credits text, at &#8230; <a href="https://themutuality.com/learn/code-snippets/customize-the-credits-text-in-genesis-themes/">Continued</a></p>
<p>The post <a href="https://themutuality.com/learn/code-snippets/customize-the-credits-text-in-genesis-themes/">Customize the Credits Text in Genesis themes</a> appeared first on <a href="https://themutuality.com">mutual{it}y</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Constructor</title>
		<link>https://themutuality.com/learn/glossary/constructor-in-object-oriented-programming/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 23 Mar 2018 17:26:49 +0000</pubDate>
				<category><![CDATA[Glossary]]></category>
		<category><![CDATA[Object-oriented programming]]></category>
		<guid isPermaLink="false">http://themutuality.com/?p=18</guid>

					<description><![CDATA[<p>In class-based object-oriented programming, a constructor (abbreviation: ctor) is a special type of subroutine called to create an object. It prepares the new object for use, often accepting arguments that the constructor uses to set required member variables. A constructor resembles an instance method, but it differs from a method in that it has no &#8230; <a href="https://themutuality.com/learn/glossary/constructor-in-object-oriented-programming/">Continued</a></p>
<p>The post <a href="https://themutuality.com/learn/glossary/constructor-in-object-oriented-programming/">Constructor</a> appeared first on <a href="https://themutuality.com">mutual{it}y</a>.</p>
]]></description>
		
		
		
			</item>
	</channel>
</rss>
