Posts Tagged with "wordpress"

Happy 10th Birthday, WordPress!

May 29th, 2013 at 5:35 pm by Mark
Tags: , , , ,

On May 27th, 2013, popular blogging software WordPress turned ten years old. In honor of the celebration, the competing Drupal team sent a cake…

Birthday Cake: "Find the Toenail"

The Honey Badger on WordPress

January 27th, 2012 at 4:42 pm by Mark
Tags: , , , ,

As if the Honey Badger itself wasn’t funny enough, now there’s a Honey Badger for WordPress geeks.

What’s that? add_meta_box() is for the admin only? WP Honey Badger don’t care; WP Honey Badger don’t give a shit. WP Honey Badger is gonna include the shit out of wp-admin/includes/template.php in a template file.

Get $20 of bonus stock when you make a deposit on Stash!

Bad Engrish

October 24th, 2009 at 1:51 am by Mark
Tags: , , , , ,

     So in the process of cleaning this blog up, pulling out some fluff and doubling the speed, I ran across a several bits of “extra” code that are quite a lot less than necessary…

     Can someone please tell what this means?

… [This plugin] is in the 2.6 version of WordPress after the automatic accession to the revised edition of the journal preservation cause, you modify a log of each, will add a revision, if you modify many times, log on the few speeches, it will be a very frightening number!If you have 100 on the log, your revisiong redundancy may be as many as 1,000 articles!

[This plugin] is the end came, to delete a large number of redundant revision to increase the speed of implementation of the SQL statement, WordPress upgrade the speed there is a lot of benefits!

Thank you for your useing. I hope this will give you convenient plug-ins!

     I has a loss…

     And if you think the Engrish is bad, you should see the math it does…

Now You have 838 posts ,Up to now [this plugin] has deteted 1042 post revision of dedundancy,it’s easy . Wish happy ending !

     Regardless of how many times I run it, 838 != 1042.

Politically Correct WordPress?

November 26th, 2008 at 8:23 am by Mark
Tags: , , , , ,

     Okay, so I’m browsing software today, and I see this incredible plugin:

blog, new beginnings, new plugin. My latest plugin, the WordPress Politically Correct plugin, PC plugin for short, is a fitting plugin for today’s 2.0 bloggers. Turning your blog into something your mother would be proud of has never been easier.

Like it’s name suggests, the PC plugin gets rid of all the non PC language on your blog.

     Yep, sure as excrement, it works.  I should maybe use something like that on my Contact form, seeing as how so many of those less than intelligent, copulating extremely ill-mannered people keep sending me the most mean-spirited cow excrement I’ve ever had to copulating read.

responsive_wp_468x60

FIX: Search Everything 4.6 Setting Issues

June 22nd, 2008 at 3:53 pm by Mark
Tags: , , , , , ,

     Ya know, I saw a random bug report in the WordPress forums about the Search Everything plugin with no actual description about what the bug was.  It just had a code snippet and said “108.”  No explanation, no fix… Just a complaint that says “108.”

     In SE-Admin.php, change Line 108 from:

<p><input type=”checkbox” id=”search_drafts” name=”search_drafts” value=”true”  <?php if($options[‘SE4_use_draft_search’] == ‘true’) { echo ‘checked=”true”‘; } ?>

     To:

<p><input type=”checkbox” id=”search_drafts” name=”search_drafts” value=”true”  <?php if($options[‘SE4_use_draft_search’] == ‘true’) { echo ‘checked=”true”‘; } ?> />

     Of course, while you’re at it, you can fix Line 102 from:

<p>     <input type=”checkbox” class=”SE_text_input” id=”appvd_comments” name=”appvd_comments” value=”true”  <?php if($options[‘SE4_approved_comments_only’] == ‘true’) { echo ‘checked=”true”‘; } ?>

to

<p>     <input type=”checkbox” class=”SE_text_input” id=”appvd_comments” name=”appvd_comments” value=”true”  <?php if($options[‘SE4_approved_comments_only’] == ‘true’) { echo ‘checked=”true”‘; } ?> />

     After doing that, some of the check boxes will actually show and work on the Settings page…