To disable WordPress 5’s Gutenberg Editor, add the following line to your theme’s functions.php:
Category: PHP
WordPress Plugin – Custom GUID
The cguid WordPress plugin appends the post’s post date to its guid in your site’s rss feed. This can be useful if your site recycles existing posts with new content and new post dates (e.g. Quote of the Day, This Day in History, etc.). If you don’t know why one would need this plugin, you … Continue reading “WordPress Plugin – Custom GUID”
Warning: main(): stream does not support seeking in /pathto/file.php on line XX
Apparently VeoWeb.Net1 upgraded PHP. This introduced a bug (feature?) which caused the above warning to be displayed even though the php script appears to work correctly. Here’s the solution: The offending line looks something like this: include($URL) ; Replacing it with this: @include($URL) ; fixes this problem. Now defunct.