Subscribe to
Posts
Comments
NSLog(); Header Image

Organizer for WordPress, Democracy, and Text Control

I've just installed the WordPress Organizer plugin and it's nice, but I wish it had two extra features. The first would be the addition of a "find abandoned files" function, which would locate all images or files that are no longer linked or used in any posts. The second would be the option to not only edit a post in the "view an image" page, but also to view the post containing the image.

Additionally, I fixed an issue Democracy was having with this blog. What I initially thought was poor coding on the part of the Democracy author ((See the proof right about here.)) turned out to be something I could resolve by modifying another plugin, Text Control. Specifically, I added a priority of "9" to all of the add_filters:

remove_filter('the_content', 'wpautop');
remove_filter('the_content', 'wptexturize');
add_filter('the_content', 'tc_post', 9);

remove_filter('the_excerpt', 'wpautop');
remove_filter('the_excerpt', 'wptexturize');
add_filter('the_excerpt', 'tc_post', 9);

remove_filter('comment_text', 'wpautop', 30);
remove_filter('comment_text', 'wptexturize');
add_filter('comment_text', 'tc_comment', 9);

One Response to "Organizer for WordPress, Democracy, and Text Control"

  1. Just in case you have to go a little deeper into the WordPress text processing system, maybe the diagrams I've made for this article, and the article itself (about making Markdown work correctly with WordPress), could prove useful.