Plugins page 1 of 1 for 2 posts
A small WordPress plugin to create a BOFH excuse using a shortcode anywhere on your WordPress website shortcodes are supported.
Usage
[[bofh]]
Output Example
[bofh]
wp-bofhDownload
Continue Reading...
I created a WordPress plugin based on a personal dilemma I ran into with my site being stripped of backslashes.
Upon post save, it converts backslashes to HTML entity ] which is what will be stored in the database.
The plugin is available on GitHub at https://github.com/rjkreider/wp-preserve-backslashesHere's the function if you want to just drop it in your functions.php file instead of installing it as a plugin.
function wppb_keepbackslash($PostID) {
$thePost = get_post($PostID);
Continue Reading...