<?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>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; wordpress blog</title> <atom:link href="http://www.ghacks.net/tag/wordpress-blog/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Fri, 10 Feb 2012 20:51:26 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Add Thumbnails To Your WordPress Blog</title><link>http://www.ghacks.net/2011/06/06/add-thumbnails-to-your-wordpress-blog/</link> <comments>http://www.ghacks.net/2011/06/06/add-thumbnails-to-your-wordpress-blog/#comments</comments> <pubDate>Mon, 06 Jun 2011 14:25:40 +0000</pubDate> <dc:creator>Melanie Gross</dc:creator> <category><![CDATA[Web Development]]></category> <category><![CDATA[thumbnails]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress blog]]></category> <category><![CDATA[wordpress tips]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=46133</guid> <description><![CDATA[Blogging with WordPress is an easy, quick way to get your posts to viewers without sitting down and plugging through an entire website of code yourself. However, there are certain aspects of the program that cause some users pause. For example, many posts benefit from a nice, clean thumbnail seated just to the left of [...]]]></description> <content:encoded><![CDATA[<p>Blogging with WordPress is an easy, quick way to get your posts to viewers without sitting down and plugging through an entire website of code yourself.  However, there are certain aspects of the program that cause some users pause.</p><p>For example, many posts benefit from a nice, clean thumbnail seated just to the left of the title of your posts.  Such images break up otherwise monotonous, similar posts into individual units with their own appearance and characteristics.  They can make the difference between an unattractive blog blanketed in text and an interesting web magazine with illustrations.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/06/wordpress-thumbnails1.png" alt="wordpress thumbnails" title="wordpress thumbnails" width="600" height="407" class="alignnone size-full wp-image-46136" /></p><p>To implement these thumbnails you need to tell WordPress to look for the specific images you want and then to add them itself.  You can do this by creating a field in each post called customimage which, when found, will tell WordPress to make the image appear.  On the off chance that you do not add the customimage field to a particular post, you want WordPress to instead display a default image.</p><p>To begin, select an image that you would like posts to display by default.  This could be your face, your dog, a speeding car – really, it&#8217;s completely up to you.  Open the image in your favorite editor (Gimp, Paint.net or any other image editor that you may have at your disposal) and set it to whatever pixel dimensions you prefer.  Be mindful that regardless of how long your blog title is, your photo will always be the same size.  Somewhere between 150 by 150 and 250 by 250 pixels is probably a safe bet, and square boxes are easier to place various images in later, as opposed to rectangular ones.  Once you have a nice image name it something you can remember (standard.gif, default.gif, etc.).</p><p>Next, upload the default image into your theme&#8217;s image directory.  This makes it available to all pages of your site and any post missing the customimage field.</p><p>Now for the important part: post the following code into the index.php file of your WordPress wherever you would like the thumbnails to appear:</p><p><code>&lt;?php $postimageurl = get_post_meta($post-&gt;ID, 'customimage', true);</p><p>if ($postimageurl) {</p><p>?&gt;</p><p>&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;img src=&quot;&lt;?php echo $postimageurl; ?&gt;&quot; alt=&quot;Post Pic&quot; width=&quot;200&quot; height=&quot;200&quot; /&gt;&lt;/a&gt;</p><p>&lt;?php } else { ?&gt;</p><p>&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('template_url'); ?&gt;/images/yourwebsite.gif&quot; alt=&quot;Screenshot&quot; width=&quot;200&quot; height=&quot;200&quot; /&gt;&lt;/a&gt;</code></p><p>After you are finished copying over the code and pasting it in index.php, save the file.  Your posts will now place whatever image you chose as your default (customimage) earlier beside each entry.  That&#8217;s good, but you really want to be able to change that image – the point of this entire exercise is to make each post different.</p><p>All that you need to do is create a custom field with each entry called customimage (not in italics, of course).  Change the value each time to the URL of whatever image you would like to display beside the particular post and you will be set to go.  Enjoy having a unique thumbnail beside each post, unless you allow it to fall to the default.</p><p>Images clearly make for a more attractive blog post for the majority of readers. Are you one of those? Photos attract, so make sure that you blog is attractive and attracting.</p><p><strong>Update from Martin:</strong></p><p>You do not necessarily have to paste the code into index.php. You can alternatively paste it into single.php for individual posts, category.php for categories or tags.php for tags.</p><p>If you are not familiar with web development you may want to select a theme that supports post thumbnails out of the box. There are even some that take the first image of each post automatically and use it as the post thumbnail provided that you have not added a thumbnail image of your own to the post.</p><p>You also need to consider that images will increase the loading time of the site. If you have a slow loading site, it is probably best not to add more images to the blog, or at least not before you started to optimize the blog code for speed.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/06/06/add-thumbnails-to-your-wordpress-blog/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>WordPress 3.0.4 Released, Fixes Critical Security Vulnerability</title><link>http://www.ghacks.net/2010/12/30/wordpress-3-0-4-released-fixes-critical-security-vulnerability/</link> <comments>http://www.ghacks.net/2010/12/30/wordpress-3-0-4-released-fixes-critical-security-vulnerability/#comments</comments> <pubDate>Wed, 29 Dec 2010 23:20:53 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Security]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress blog]]></category> <category><![CDATA[wordpress security]]></category> <category><![CDATA[wordpress update]]></category> <category><![CDATA[wordpress vulnerability]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=38506</guid> <description><![CDATA[An update to the popular blogging platform WordPress has just been released that fixes a critical security vulnerability in the software. WordPress 3.0.4 is already available for download at the official website and through the updating options on installed WordPress blogs. The update is currently not announced on the frontpage of the admin interface which [...]]]></description> <content:encoded><![CDATA[<p>An update to the popular blogging platform WordPress has just been released that fixes a critical security vulnerability in the software. WordPress 3.0.4 is already available for download at the official website and through the updating options on installed WordPress blogs.</p><p>The update is currently not announced on the frontpage of the admin interface which means that WordPress admins need to click on Updates to see the update options.</p><p>It is as usually possible to install the update right away by downloading it directly to the server running the blog. The script handles the download, unpacking and installation of the new version automatically.</p><p>Users who want to test the release first can also download it instead to do just that.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/12/wordpress-3-0-4-update.jpg" alt="wordpress 3.0.4 update" title="wordpress 3.0.4 update" width="442" height="252" class="alignnone size-full wp-image-38507" /></p><p>The vulnerability reads:</p><blockquote><p>Fix XSS vulnerabilities in the KSES library: Don&#8217;t be case sensitive to attribute names. Handle padded entities when checking for bad protocols. Normalize entities before checking for bad protocols in esc_url()</p></blockquote><p>WordPress rates the vulnerability as critical which means that webmasters should update their blogs as soon as possible to protect it from possible exploits of the issue.</p><p><a
href="http://wordpress.org/">WordPress</a> is also available directly at the official website.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/12/30/wordpress-3-0-4-released-fixes-critical-security-vulnerability/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Speed Up WordPress With Better Permalink Rewrite Code</title><link>http://www.ghacks.net/2010/01/09/speed-up-wordpress-with-better-permalink-rewrite-code/</link> <comments>http://www.ghacks.net/2010/01/09/speed-up-wordpress-with-better-permalink-rewrite-code/#comments</comments> <pubDate>Sat, 09 Jan 2010 10:17:46 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[htaccess]]></category> <category><![CDATA[permalinks]]></category> <category><![CDATA[website]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress blog]]></category> <category><![CDATA[wordpress tweak]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=22159</guid> <description><![CDATA[A new WordPress blog uses an unoptimized url structure that uses numbers instead of the actual article titles. The so called permalinks need to be changed to switch from the number system to a system that is better readable for visitors and favored by the search engines. It is for instance possible to use urls [...]]]></description> <content:encoded><![CDATA[<p>A new WordPress blog uses an unoptimized url structure that uses numbers instead of the actual article titles. The so called permalinks need to be changed to switch from the number system to a system that is better readable for visitors and favored by the search engines. It is for instance possible to use urls that display the category and page title as the url, to mix in dates, numerics or custom information.</p><p>The most important rule for search engine optimization is to use the page title in the url. Everything else is optional and up to the user&#8217;s liking.</p><p><span
id="more-22159"></span>WordPress generates an .htaccess file when the permalinks are changed that contains the rewrite directives. It sometimes happens that the file cannot be created or written which would then mean that the user would need to create and edit the htaccess file manually.</p><p>The WordPress code that is used is not optimized. It does not prevent for instance unnecessary file and directory checks. JP Morgan over at the Webmaster World forum created a better rewrite directive that &#8220;fixes several performance-affecting problems&#8221;.</p><blockquote><p>This is a total replacement for the code supplied with WP as bounded by the &#8220;Begin WP&#8221; and &#8220;End WP&#8221; comments, and fixes several performance-affecting problems. Notably, the unnecessary and potentially-problematic <IfModule> container is completely removed, and code is added and re-structured to both prevent completely-unnecessary file- and directory- exists checks and to reduce the number of necessary -exists checks to one-half the original count (due to the way mod_rewrite behaves recursively in .htaccess context).</p></blockquote><p>According to JP the modified code speeds up the .htaccess code by at least a factor of two by &#8220;avoiding the second-pass exists checks on index.php itself, and avoiding exists-checks on resources such as image files which obviously don&#8217;t need to be handled by WP.&#8221;</p><p>Replace the old WordPress rewrite code in the .htaccess file with the following new code. You might need to edit the file types (gif|jpg|php|ico|css|js). These should contain the files that are requested the most. It might make sense to include png for instance in the list.</p><p><code># BEGIN WordPress<br
/> #<br
/> RewriteEngine on<br
/> #<br
/> # Unless you have set a different RewriteBase preceding this point,<br
/> # you may delete or comment-out the following RewriteBase directive<br
/> # RewriteBase /<br
/> #<br
/> # if this request is for "/" or has already been rewritten to WP<br
/> RewriteCond $1 ^(index\.php)?$ [OR]<br
/> # or if request is for image, css, or js file<br
/> RewriteCond $1 \.(gif|jpg|php|ico|css|js)$ [NC,OR]<br
/> # or if URL resolves to existing file<br
/> RewriteCond %{REQUEST_FILENAME} -f [OR]<br
/> # or if URL resolves to existing directory<br
/> RewriteCond %{REQUEST_FILENAME} -d<br
/> # then skip the rewrite to WP<br
/> RewriteRule ^(.*)$ - [S=1]<br
/> # else rewrite the request to WP<br
/> RewriteRule . /index.php [L]<br
/> #<br
/> # END wordpress </code></p><p>This change seems to speed up the WordPress loading time considerably. Let us know how you think it affected the page loading time if you have implemented it in your blog or noticed a difference here at Ghacks.</p><p>Visit the <a
href="http://www.webmasterworld.com/apache/4053973.htm">thread</a> over at the Webmaster World forum for additional information.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/01/09/speed-up-wordpress-with-better-permalink-rewrite-code/feed/</wfw:commentRss> <slash:comments>30</slash:comments> </item> <item><title>WordPress Blogs: Create Custom Tag Pages</title><link>http://www.ghacks.net/2009/04/08/wordpress-blogs-create-custom-tag-pages/</link> <comments>http://www.ghacks.net/2009/04/08/wordpress-blogs-create-custom-tag-pages/#comments</comments> <pubDate>Wed, 08 Apr 2009 07:06:51 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Tutorials Advanced]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[custom tag pages]]></category> <category><![CDATA[custom tags]]></category> <category><![CDATA[tags]]></category> <category><![CDATA[web development]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress blog]]></category> <category><![CDATA[wordpress tips]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/08/wordpress-blogs-create-custom-tag-pages/</guid> <description><![CDATA[A WordPress blog post consists of a handful of elements like the title and body but also tags, categories and comments. Tag pages usually display excerpts of all posts that use the same tag. One example: If you search for Windows 7 Download on Google you find that a tag page for my website Windows [...]]]></description> <content:encoded><![CDATA[<p>A WordPress blog post consists of a handful of elements like the title and body but also tags, categories and comments. Tag pages usually display excerpts of all posts that use the same tag. One example: If you search for <a
href="http://www.windows7news.com/tag/windows-7-download/">Windows 7 Download</a> on Google you find that a tag page for my website Windows 7 News is ranking on the third page of the results. Tag pages on the other hand are usually not the pages that visitors expect when visiting a website.</p><p>Webmasters can however utilize tag pages better in their WordPress blogs by creating so called custom tag pages which can contain any information they want. If you open the page above you notice that it does not contain a listing of blog excerpts but a custom page for that tag.</p><p>WordPress provides the means to create those custom tag pages easily. Custom tag pages can be created in the theme directory of the WordPress directory by adding a new template file to the theme. This new template file needs to begin with tag followed by the post slug of the tag. In the case of the Windows 7 Download tag it would have to be named <strong>tag-windows-7-download.php</strong>.</p><p><span
id="more-11768"></span>Custom tag pages have a higher priority than the default ones that show only excerpts of the posts. The easiest way to fill the custom tag with content is the following:</p><p>WordPress looks for the following files in order to create those tag pages:</p><ul><li>tag-slug.php</li><li>tag.php</li><li>archive.php</li><li>index.php</li></ul><p>Look into your theme folder and see if there is a tag.php file. If it is copy its contents and create a new php file that is using the tag-slug.php as its name. If ther eis no tag.php look for archive.php and finally index.php.</p><p>Now simply add content to the file. It might take some experimentation at the beginning but it can be really worth it in the long run. If you have any questions or additions let me know in the comments.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/04/08/wordpress-blogs-create-custom-tag-pages/feed/</wfw:commentRss> <slash:comments>14</slash:comments> </item> <item><title>WordPress 2.7.1 Update</title><link>http://www.ghacks.net/2009/02/11/wordpress-271-update/</link> <comments>http://www.ghacks.net/2009/02/11/wordpress-271-update/#comments</comments> <pubDate>Tue, 10 Feb 2009 22:59:07 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[blog software]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress blog]]></category> <category><![CDATA[wordpress bugs]]></category> <category><![CDATA[wordpress update]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=10460</guid> <description><![CDATA[Seems the WordPress developers have finally released a new version of the free blog software. The update to WordPress 2.7.1 (from 2.7) is a maintenance release which fixes 68 tickets. It is therefor a recommended upgrade and should be applied by WordPress webmasters as soon as possible. The WordPress tracker which is mentioned on the [...]]]></description> <content:encoded><![CDATA[<p>Seems the WordPress developers have finally released a new version of the free blog software. The update to WordPress 2.7.1 (from 2.7) is a maintenance release which fixes 68 tickets. It is therefor a recommended upgrade and should be applied by WordPress webmasters as soon as possible. The WordPress tracker which is mentioned on the update page is currently unavailable which is probably due to the release announcement which is visible for every admin in the WordPress interface.</p><p>You can download the latest version of <a
href="http://wordpress.org/news/2009/02/wordpress-271/">WordPress</a> from the official website or apply the upgrade manually in the WordPress interface. You can take a look at in depth file changes by following this link or at the 68 tickets that have been closed <a
href="http://core.trac.wordpress.org/query?status=closed&amp;milestone=2.7.1&amp;resolution=fixed&amp;order=priority">here</a>.</p><p>The update includes six tickets with a high rating and more than 50 rated as normal. While the update does not list many security fixes it is still recommended to update as soon as possible. The update will not alter the database and should not break anything including plugins or themes.</p><p><span
id="more-10460"></span></p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/02/11/wordpress-271-update/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>WordPress: Your attempt to edit this post has failed</title><link>http://www.ghacks.net/2009/02/02/wordpress-your-attempt-to-edit-this-post-has-failed/</link> <comments>http://www.ghacks.net/2009/02/02/wordpress-your-attempt-to-edit-this-post-has-failed/#comments</comments> <pubDate>Mon, 02 Feb 2009 20:45:37 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress autosave]]></category> <category><![CDATA[wordpress blog]]></category> <category><![CDATA[wordpress bug]]></category> <category><![CDATA[wordpress error]]></category> <category><![CDATA[wordpress tip]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=10296</guid> <description><![CDATA[There are usually two areas that can cause problems and errors in a WordPress blog. The first are plugins that produce incompatibilities or display errors while the second are problems after updates of the blog software itself. There have been some problematic messages occasionally when trying to publish posts lately. The error message Your attempt [...]]]></description> <content:encoded><![CDATA[<p>There are usually two areas that can cause problems and errors in a WordPress blog. The first are plugins that produce incompatibilities or display errors while the second are problems after updates of the blog software itself.</p><p>There have been some problematic messages occasionally when trying to publish posts lately. The error message Your attempt to edit this post [..] has failed appeared occasionally after upgrading to WordPress 2.7. WordPress was not able to publish the article which was bad enough but the underlying problem was that all work up to the point of the last auto save was lost as well.</p><p>This usually meant that the tags, categories and other last minute edits (like urls) were missing from the posts and had to be added again. The second edit and publishing always succeeded without difficulties.</p><p><span
id="more-10296"></span>The first thought was that this could have something to do with the automatic saves of posts before publishing. A quick research on the WordPress support forum seemed to confirm that.</p><p>The fix is apparently the following:</p><p>Locate the file post-new.php in the wp-admin folder of the WordPress installation. Find the following line in that file <code>wp_enqueue_script('autosave');</code> and replace it with <code>//wp_enqueue_script('autosave');</code>.</p><p>The // in front of the row make the entire row a comment which essentially means that the command will not be executed. This will practically disable auto save during post publishing meaning that you will hacve to click on the Save Draft button before you leave an unfinished post page.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/02/02/wordpress-your-attempt-to-edit-this-post-has-failed/feed/</wfw:commentRss> <slash:comments>12</slash:comments> </item> <item><title>WordPress 2.6.5 Security Update</title><link>http://www.ghacks.net/2008/11/25/wordpress-265-security-update/</link> <comments>http://www.ghacks.net/2008/11/25/wordpress-265-security-update/#comments</comments> <pubDate>Tue, 25 Nov 2008 21:23:19 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Security]]></category> <category><![CDATA[The Web]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[blog software]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress blog]]></category> <category><![CDATA[wordpress security]]></category> <category><![CDATA[wordpress update]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=8541</guid> <description><![CDATA[The WordPress development team has released version 2.6.5 of the blogging plattform for download. The release fixes one security update and three bugs and can be downloaded from the official WordPress website. Alternatively only the files wp-includes/feed.php and wp-includes/version.php can be copied from the new release over the old files to update the blog. The [...]]]></description> <content:encoded><![CDATA[<p>The WordPress development team has released version 2.6.5 of the blogging plattform for download. The release fixes one security update and three bugs and can be <a
href="http://wordpress.org/download/">downloaded</a> from the official WordPress website.</p><p>Alternatively only the files wp-includes/feed.php and wp-includes/version.php can be copied from the new release over the old files to update the blog. The security vulnerability is unlikely to affect a large number of WordPress blogs though as it only only affects IP-based virtual servers running on Apache 2.x.</p><p>There might also be some confusion about the versioning of WordPress. The last official WordPress version was WordPress 2.6.3. WordPress 2.6.4 was skipped because of a fake malicious release that made its round. The official new release is therefor WordPress 2.6.5.</p><p><span
id="more-8541"></span></p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2008/11/25/wordpress-265-security-update/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>WordPress Issues</title><link>http://www.ghacks.net/2008/07/27/wordpress-issues/</link> <comments>http://www.ghacks.net/2008/07/27/wordpress-issues/#comments</comments> <pubDate>Sun, 27 Jul 2008 21:51:08 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Online Services]]></category> <category><![CDATA[The Web]]></category> <category><![CDATA[website]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress blog]]></category> <category><![CDATA[wordpress issues]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=5645</guid> <description><![CDATA[I have been working with the WordPress script that powers this blog and several of my other for almost three years now and can say that the overall experience is quite positive. It&#8217;s easy to setup and maintain and provides a good level of customization. So far so good. Several issues appeared over time that [...]]]></description> <content:encoded><![CDATA[<p>I have been working with the WordPress script that powers this blog and several of my other for almost three years now and can say that the overall experience is quite positive. It&#8217;s easy to setup and maintain and provides a good level of customization.</p><p>So far so good. Several issues appeared over time that I would like to address in this short article. I tried to fix them before but I failed to really find solutions for them. I did post a few help requests at the official WordPress forum which remained unanswered even after pushing them a few times and a search on Google did not return the desired results as well.</p><p>So, here we start with my personal WordPress issues that other webmasters might also experience:</p><p><span
id="more-5645"></span><ul><li><strong>Akismet is not perfect:</strong> Akismet is the default WordPress anti-spam plugin which is delivered with the default installation of WordPress. That puts it in an unfair advantage over other spam plugins like Spam Karma which is in many aspects a better plugin. But I do not want to talk about politics here. Akismet comes with no configuration options at all. The only things that can be added are the WordPress Api Key which is mandatory and a checkbox to delete spam that is older than a year.<p>If you compare it to Spam Karma you are comparing Notepad to Notepad++. That&#8217;s the difference in usability. Akismet divides spam into user comments, trackback and pingback spam but it is not possible to delete only one category. The delete all button always deletes all spam.</p><p>Akismet does have a search field but that search field is global, there is no way to only search the author name, email or filter by other parameters like only showing posts with one link or less in the body.</p><p>It does catch quite a few valid comments which are then lost forever because it is impossible to work with Akisment on websites that get 1000+ spam comments a day unless you do that full time.</li><li><strong>Spammers can still register accounts although registration has been turned off:</strong> When I turn off registration to my website in the settings of WordPress I expect to see no new users in the future unless I add them manually. The option however does not really help because even though it has been turned off spammers can still register accounts on my blog.</li><li><strong>There is no history:</strong> &#8211; The admin cannot see what authors or subscribed users of the blog have been doing. He cannot see if an author deleted an article that he wrote earlier, he cannot see if a user edited or removed a comment.</li><li><strong>Publishing an pending article:</strong> When someone else with not enough user rights is writing an article that article gets added to the Pending Articles and an user with enough rights can publish it after reviewing it. The problem that I face is that I have a hard time figuring out how to publish the article so that it is published in that instance and not in the past. If I just hit publish the article is published when the author of it saved the final version. This can be a few hours or even a few days in the past.<p>I have not investigated that matter further but I suppose it could be problematic for RSS Feeds and even the site itself. I tried to change the date to the current one and publish it but it still felt like I missed something here. It&#8217;s definitely a strange behavior in my opinion.</li></ul><p>Those are my issues with WordPress and I always cross my fingers and hope that they get fixed in one of the next updates.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2008/07/27/wordpress-issues/feed/</wfw:commentRss> <slash:comments>16</slash:comments> </item> </channel> </rss>
