WRInaute impliqué
j'affectionne :

WP-PageNavi
Broken link checker
Yet Another Related Posts Plugin
CommentLuv
Subscribe To "Double-Opt-In" Comments

et WP Super Cache biensure :)
 
WRInaute discret
Merci beaucoup ! Post très intéressant ! Faudrait ouvrir un topic avec les trouvailles des plugins que la communauté veux partager

le plugin que j'aime le plus : Visitor Maps and Who's Online

EDIT :

je vois pas l'intéret du plugin redirection, comment ca marche ?
 
WRInaute impliqué
Oui sympa ce topic.

Pour supprimer les nofollow j'ai mis en place ca dans functions.php (a adapter je pense selon le template) :

Code:
// NOFOLLOW
function remove_nofollow_1($string) { return str_replace('rel=\'external nofollow\'', '', $string); }
function remove_nofollow_2($string) { return str_replace('rel="nofollow"', '', $string); }
function remove_nofollow_3($string) { return str_replace('rel=\'nofollow\'', '', $string); }

add_filter('get_comment_author_link', 'remove_nofollow_1');
add_filter('comment_text', 'remove_nofollow_2');
add_filter('comment_reply_link', 'remove_nofollow_3');
add_filter('cancel_comment_reply_link', 'remove_nofollow_2');
add_filter( 'post_comments_link','remove_nofollow_2');

J'ai aussi ca pour ajouter les image à la une dans le flux RSS :

Code:
// THUMBNAIL RSS FEED
function insertThumbnailRSS($content) {
    global $post;
    if ( has_post_thumbnail( $post->ID ) ){
        $content = '' . get_the_post_thumbnail( $post->ID, 'thumbnail', array( 'alt' => get_the_title(), 'title' => get_the_title(), 'style' => 'float:left;margin:0 10px 10px 0')).'' . $content;
    }
    return $content;
}
add_filter('the_excerpt_rss', 'insertThumbnailRSS');
add_filter('the_content_feed', 'insertThumbnailRSS');

Pratique aussi en cas de changement d’url du blog …
 
Discussions similaires
Haut