Archive for the ‘Tips and Tricks’ Category

Disable HTML in WordPress Comments


02
07
11

In your SPAM folde there are many comments with alot of HTML codes which are basically links. That is how most spammers add links. But you can disable HTML in WordPress Comments to be functional. So if someone uses the strong code, it will not bold the text etc.

All you have to do is simply open your functions.php and add the following code:

 

    // This will occur when the comment is posted
    function plc_comment_post( $incoming_comment ) {
 
    // convert everything in a comment to display literally
    $incoming_comment['comment_content'] = htmlspecialchars($incoming_comment['comment_content']);
 
    // the one exception is single quotes, which cannot be #039; because WordPress marks it as spam
    $incoming_comment['comment_content'] = str_replace( "'", ''', $incoming_comment['comment_content'] );
 
    return( $incoming_comment );
    }
 
    // This will occur before a comment is displayed
    function plc_comment_display( $comment_to_display ) {
 
    // Put the single quotes back in
    $comment_to_display = str_replace( ''', "'", $comment_to_display );
 
    return $comment_to_display;

The original author also offers a plugin that you can download from his site.

Backup Your WordPress Site to Dropbox


01
07
11

A new plugin is available that gives you the change to put Dropbox to work for the security of your great WordPress site. Here’s how you can set up automatic backups of your WordPress site to Dropbox! Isn’t that Great or what?

Step 1: Signup for Dropbox

the free version is not enough space for you, you’ll can purchase a plan that will accommodate your website backups.

(more…)

WordPress Worldmap – Get to Know Your WP Neighbour!


26
02
10

It’s a idea by Oliver Schlöbe of WPSeek, who created the WP Worldmap. Now it is possibel for you to  see where you can find all those WordPress Users and Developers. Don’t forget to put your location and profile on the map. It’s easy to zoom and move around.