
<?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>Yokel Economics &#187; WordPress</title>
	<atom:link href="http://192.168.0.198/archives/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://192.168.0.198</link>
	<description>Writings, notes, and data</description>
	<lastBuildDate>Mon, 30 Mar 2026 02:04:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Blog code and general code release note system</title>
		<link>http://192.168.0.198/archives/1690</link>
		<comments>http://192.168.0.198/archives/1690#comments</comments>
		<pubDate>Sun, 23 Feb 2025 02:19:56 +0000</pubDate>
		<dc:creator>Yokelheim</dc:creator>
				<category><![CDATA[Computing Notes]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://192.168.0.198/?p=1690</guid>
		<description><![CDATA[Today’s site updates including removing the RSS feed links. Kinsta provided source code.1  The code for functions.php to remove it is: remove_action( 'wp_head', 'feed_links_extra', 3 ); remove_action( 'wp_head', 'feed_links', 2 ); remove_action('wp_head', 'wlwmanifest_link'); Kinsta also provided another very useful function2 and that was one that removed the various update notifications in the dashboard. function kinsta_hide_update_nag() [...]]]></description>
			<content:encoded><![CDATA[<p>Today’s site updates including removing the RSS feed links. Kinsta provided source code.<sup>1</sup>  The code for functions.php to remove it is:</p>
<pre class="prettyprint">remove_action( 'wp_head', 'feed_links_extra', 3 );
remove_action( 'wp_head', 'feed_links', 2 );
remove_action('wp_head', 'wlwmanifest_link');</pre>
<p>Kinsta also provided another very useful function<sup>2</sup> and that was one that removed the various update notifications in the dashboard.</p>
<pre class="prettyprint">function kinsta_hide_update_nag() {
remove_action( 'admin_notices', 'update_nag', 3 );
}

add_action('admin_menu','kinsta_hide_update_nag');</pre>
<p>Another very useful function for WordPress is one where you may add additional mime types for upload to the library.  This is useful for uploading compressed archives in different formats. Chris Meller’s venerable blog provides the source.<sup>3</sup></p>
<pre class="prettyprint">add_filter('upload_mimes', 'custom_upload_mimes');
function custom_upload_mimes ( $existing_mimes=array() ) {

	// add your ext =&gt; mime to the array</pre>
<pre class="prettyprint">	$existing_mimes['xz'] = 'application/x-xz';
        $existing_mimes['zip'] = 'application/zip';
	$existing_mimes['xml'] = 'application/xml';

	// add as many as you like
	// and return the new full result</pre>
<pre class="prettyprint">	return $existing_mimes;

}</pre>
<p>Somewhere along the way I picked up the following items to use as release notes within the scripts that I create.</p>
<p>E.g. 11/05/2024: [*] Changed URL to 1.1.1.1 from 8.8.8.8</p>
<pre class="prettyprint">[+] = Added
[*] = Changed  
[^] = Moved  
[=] = No Changes  
[x] = Deleted  
[!] = Bugs  
[_] = To Do  
[&gt;] = Migrated  
[&lt;] = Migrated</pre>
<p>1. Kinsta®. “WordPress Disable RSS Feed,” August 30, 2016. <a href="https://kinsta.com/knowledgebase/wordpress-disable-rss-feed/">https://kinsta.com/knowledgebase/wordpress-disable-rss-feed/</a>.</p>
<p>2. Kinsta®. “How To Disable WordPress Update Notifications (Plugin or Code),” July 4, 2022. <a href="https://kinsta.com/knowledgebase/disable-wordpress-update-notification/">https://kinsta.com/knowledgebase/disable-wordpress-update-notification/</a>.</p>
<p>3. Meller, Chris. “Modifying Allowed Upload Types in WordPress | Chris Meller,” July 26, 2007. <a href="https://blog.chrismeller.com/modifying-allowed-upload-types-in-wordpress">https://blog.chrismeller.com/modifying-allowed-upload-types-in-wordpress</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://192.168.0.198/archives/1690/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simon Says and use Mojeek</title>
		<link>http://192.168.0.198/archives/669</link>
		<comments>http://192.168.0.198/archives/669#comments</comments>
		<pubDate>Wed, 26 Jun 2024 07:16:51 +0000</pubDate>
		<dc:creator>Yokelheim</dc:creator>
				<category><![CDATA[History notes]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[Mojeek]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://192.168.0.198/?p=669</guid>
		<description><![CDATA[The Simon Says blog has been online for a long time. Here is an entry from 2008 about ripping CDs on a Mac.  In a way this site shows what is wrong with the web.  Twenty years ago blogs and websites had favorites and blog rolls.  Through this people discovered many great sites.  Around 2012 [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="https://simonwoodside.com" target="_blank">Simon Says</a> blog has been online for a long time. <a href="https://simonwoodside.com/2008/11/25/getting_a_secure_rip_a.html" target="_blank">Here is an entry from 2008 </a>about ripping CDs on a Mac.  In a way this site shows what is wrong with the web.  Twenty years ago blogs and websites had favorites and blog rolls.  Through this people discovered many great sites.  Around 2012 WordPress removed the Link Manager from the default WordPress and the blog-sphere began to fade away because the links began to fray.  From there, Google began to limit search results to the chosen few.  Recently Bing search has begun allowing scrolling to many different search results again. I went to page 16 the other day just to see.  To use a Search Engine like it&#8217;s 2009, which was way better than now, use <a href="https://www.mojeek.com/" target="_blank">Mojeek</a>.  I hope they don&#8217;t break it.  That&#8217;s how I found that 2008 entry about ripping CDs on a Mac.  That is a discovery that one would never find on Google.  It was like stepping into a time machine.</p>
]]></content:encoded>
			<wfw:commentRss>http://192.168.0.198/archives/669/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
