Categories
Package/plugin/module WordPress

Plugin: Never Moderate Admin or Post Author

This plugin has been deprecated! It is no longer necessary as its functionality has been integrated into WordPress. There will not be any continued support for it. Comments to this post are also now closed.

When I released the plugin, I also simultaneously made a bug report and patch for the WP core, which was quickly accepted and applied.

Reported as a bug in trac ticket #1262.
Fixed in WordPress in changeset #2556.

Name:
Never Moderate Admin or Post Author
Author:
Scott Reilly
Version:
0.9
Last updated:
25 March 2005
Download:
Description:

Never moderate or mark as spam comments made by the site admin, the post’s author, or optionally, any registered user above a specified user level, regardless of the apparent spamminess of the comment.

Categories
Package/plugin/module WordPress

Plugin: Obfuscate E-mail

This plugin has been updated! Comments to this post are now closed. For the latest download, documentation, and link for posting new comments related to this plugin, visit the plugin’s new homepage at:
coffee2code.com/wp-plugins/obfuscate-email
Name:
Obfuscate E-mail
Author:
Scott Reilly
Version:
0.9
Last updated:
24 March 2005
Description:

Obfuscate e-mail addresses in text and links via random hex and ASCII code substitution while retaining the appearance and functionality of hyperlinks.

Categories
Package/plugin/module WordPress

Plugin: Easy Post-to-Post Links

This plugin has been updated! Comments to this post are now closed. For the latest download, documentation, and link for posting new comments related to this plugin, visit the plugin’s new homepage at:
coffee2code.com/wp-plugins/easy-post-to-post-links
Name:
Easy Post-to-Post Links
Author:
Scott Reilly
Version:
0.9
Last updated:
23 March 2005
Description:

Easily reference another post in your blog using a shortcut, either by id or post slug. The shortcut is replaced with the hyperlinked title of the referenced post.

Categories
WordPress

7 Days of Plugins

In a belated celebration of the release of WordPress 1.5 (or is it in early anticipation of 1.5.1?), I will set upon seven days of plugins. Seven days of at least one new plugin a day AND the update of at least one of my existing plugins a day (at the end of the seven days, all of my existing plugins will have been updated). Expect more than just seven new plugins though.

Categories
WordPress

Walking with 1.5

Had a chance to comb through some of the latest WordPress 1.5 code (through 2005-01-05) in CVS, both in the course of a fresh install and in the course of code analysis for development of some new plugins. Spotted a few things that would benefit from improvement (nothing critical).

Categories
WordPress

Miscellenous WP 1.3 development notes/ideas

A list of things I’ve noted, provided, or want to inquire about to help contribute to WordPress v1.3 (or as ideas for future versions), roughly in ascending order from trivial to implement to complex.

Categories
Package/plugin/module WordPress

Plugin: Customizable Post Listings

This plugin has been updated! Comments to this post are now closed. For the latest download, documentation, and link for posting new comments related to this plugin, visit the plugin’s new homepage at:
coffee2code.com/wp-plugins/customizable-post-listings
Name:
Customizable Post Listings
Author:
Scott Reilly
Version:
1.1
Last updated:
27 September 2004
Description:

Display Recent Posts, Recently Commented Posts, Recently Modified Posts, Random Posts, and other post listings using the post information of your choosing in an easily customizable manner. You can narrow post searches by specifying categories and/or authors, among other things.

Categories
WordPress

Patch: Dealing with multiple <!–more–>

Bug 0000113 is titled “Post content ‘lost’ if multiple <!–more–> (more…) tags used“. Which basically says that if more than 1 <!–more–> tag is located in the content of a post, you’d only ever see the text up to the second <!–more–>. All subsequent text, though still part of the post content in the database, will never be displayed. The fix is extremely simple:

In wp-includes/template-functions-post.php, in the function get_the_content(), change this line:

$content = explode('&lt&;!--more-->', $content);

to this:

$content = explode('&lt&;!--more-->', $content, 2);

The third argument to explode(), the limit arg, was introduced in PHP 4.0.1, and since WP supports PHP 4.1, the fix should be valid. This way text before the first <!–more–> will be put into $content[0] (as expected), and all other post content, regardless of subsequent <!–more–> tags, will be put into $content[1] and therefore not “lost”.

Here is the patch (modified from, and then compared against, the latest WP 1.3 from CVS).