mikelu
Forum Replies Created
-
Forum: Plugins
In reply to: Modifications for uploading to sub-foldersZarniwoop:
Indeed, it should always the plugin/hack developer’s responsibility to recognize thumbnails. However, there may still some hacks or even plugins that use so-called non-standard ways for thumbnail processing, therefore, I think I should leave the option for users if they, by any chance, desire different ways to store their thumbnails.
In my modification, you can always use the original WP way by setting$thumb_dirto an empty string.
BTW, I had again updated my codes so that this new version can remember some info of the your previous uploading.
Please download again from the same links. ^_^Forum: Plugins
In reply to: Modifications for uploading to sub-foldersOops! Forgot to use $thumb_dir for the thumbnail preview.
Fixed. Please download again.
Oh, and the link is fixed, too.Forum: Fixing WordPress
In reply to: Category descriptions?Did you try using category_description() with specified category_id? like this: category_description($some_cat_id)
Forum: Requests and Feedback
In reply to: Feedback for pluginallusion:
I got your point ^_^
glad to see that you make this into future version, too.
You guys do think of everything, all we users need to do is wait and be pleasantly surprised for the new release coming with features that we ever dreamed of :pForum: Fixing WordPress
In reply to: Giant commit of May 24th – db errors on upgradereplace
$tablexxxxwith$wpdb->xxxx
xxxx are default tables that WP used, you can see a complete list in wp-settings.php.You can add a priority tag in
add_filter('the_content', 'Markdown', 6)so that markdown will be used prior to wptexturize.
I think most of the problems were caused by wptexturize() translating characters that were to be used in markdown().Forum: Plugins
In reply to: [req] Related Entries PluginIn adam’s post, he mentioned:
… was generating the related list through PHP each time the entry was shown. This caused a problem with database timeouts and he had to put in a caching mechanism.
Of cource you can put the function in index.php. I put it in wp-comments.php so that such list will only show up in single post view.
Forum: Plugins
In reply to: 1.2 plugin request: Close comments after X time.I did some modification in wp-comments-post.php to approach the concept that nsxpower mentioned. Maybe you can check to see if it fits your need on my site.
comment moderation
PS. My site is written in Chinese, but you can still see codes for the modifications.Forum: Plugins
In reply to: [req] Related Entries PluginI did implement a related entries hack that use post slug as searching terms on my site. Maybe you can check it out and see if it’s what you requested for.
related entriesForum: Plugins
In reply to: Comment Preview for WordPress 1.2The hack is also incompatible with Chinese. Probably caused by htmlentities().
Forum: Requests and Feedback
In reply to: Default to edit.php instead of post.phpYou can modify wp-admin/index.php and replace
post.phpwithedit.php.Forum: Fixing WordPress
In reply to: TrackBackunderblog: I tried to send trackback to you (the last 2 posts), but none of my trackbacks showed up. But I then tried to send from MovableType and it worked! To be honest, I have no idea why it can’t work in your case. Sorry that I do no help.