سرمایه گذاری متفاوت در سال نو 🍎🌱 ۳۵٪ تخفیف نوروزی ➕ حضور رایگان در مسترمایند نخبگان صنعت نرم‌افزار 💻✅
۰ ثانیه
۰ دقیقه
۰ ساعت
۵ بهمن فلاحی
تمرین: پلاگین فیلتر لینک‌ها در کامنت‌های وردپرس
جامعه وردپرس (برنامه نویسی) ایجاد شده در ۲۰ آبان ۱۴۰۲

درود

برای درک و حل مسئله، چطور به موضوع پرداختم؟ به طور خلاصه:

۱. در صحبت‌های آقای صالحی اشاره‌ای شد به strip_tags که آن را مطالعه کردم.

۲. در بین پاسخ‌های ارائه شده به ریپازیتوری آقای مرادی مراجعه کردم به شیوه OOP مسئله را حل کرده بودند.

۳. با توجه به درک مسئله تلاش کردم آن را به یک پرامپ تبدیل کنم و از آن خروجی (به شکل ساده و نه OOP) بگیرم:

 

<?php
/*
Plugin Name: Enhanced Comment Filter
Plugin URI: https://bahmanfallahi.ir/
Description: Enhanced Comment Filter
Author: Bahman Fallahi
Version: 1.1.0
License: GPLv2 or later
Author URI: https://bahmanfallahi.ir/
*/
defined('ABSPATH') || exit;
function filter_comment_text(string $comment_content): string {
   // Filter bad words
   $bad_words = ['کلمه شما', 'کلمه شما', 'کلمه شما'];
   foreach ($bad_words as $word) {
       $word_length = mb_strlen($word);
       $comment_content = str_replace($word, str_repeat('*', $word_length), $comment_content);
   }
   // Remove links
   $comment_content = preg_replace('/<a\b[^>]*>(.*?)<\/a>/i', '*', $comment_content);
   // Remove link href
   $comment_content = preg_replace('/<a\b[^>]*href=[\'"](.*?)[\'"][^>]*>(.*?)<\/a>/i', '*', $comment_content);
   // Remove link title and replace with a star
   $comment_content = preg_replace('/<a\b[^>]*title=[\'"](.*?)[\'"][^>]*>(.*?)<\/a>/i', '*', $comment_content);
   // Add nofollow attribute to links
   $comment_content = preg_replace('/<a\b(.*?)>/i', '<a$1 rel="nofollow">', $comment_content);
   // Allow only specified tags
   $allowed_tags = '<p><b><hr><strong>';
   $comment_content = strip_tags($comment_content, $allowed_tags);
   return $comment_content;
}
add_filter('comment_text', 'filter_comment_text');

 

با رویکرد OOP:

 


'; private function __construct() { add_filter('comment_text', array($this, 'filter_comment_text')); } public static function get_instance() { if (!isset(self::$instance)) { self::$instance = new self(); } return self::$instance; } public function filter_comment_text(string $comment_content): string { // Filter bad words foreach ($this->bad_words as $word) { $word_length = mb_strlen($word); $comment_content = str_replace($word, str_repeat('*', $word_length), $comment_content); } // Remove links $comment_content = preg_replace('/]*>(.*?)<\/a>/i', '*', $comment_content); // Remove link href $comment_content = preg_replace('/]*href=[\'"](.*?)[\'"][^>]*>(.*?)<\/a>/i', '*', $comment_content); // Remove link title and replace with a star $comment_content = preg_replace('/]*title=[\'"](.*?)[\'"][^>]*>(.*?)<\/a>/i', '*', $comment_content); // Add nofollow attribute to links $comment_content = preg_replace('//i', '', $comment_content); // Allow only specified tags $comment_content = strip_tags($comment_content, $this->allowed_tags); return $comment_content; } } EnhancedCommentFilter::get_instance();

 

 

بهمن فلاحی ۲۰ آبان ۱۴۰۲، ۱۱:۲۵

من به اشتباه فراموش کردم کلمات رکیک برای فیلتر را حذف کنم. لطفا در صورت امکان آن را ویرایش کنید. نه امکان ویرایش دارم و نه امکان حذف. پوزش.

بهمن فلاحی ۲۰ آبان ۱۴۰۲، ۱۱:۲۹

سلام،

ویرایش شد.

بسیار عالی. موفق باشید.

محسن موحد ۲۰ آبان ۱۴۰۲، ۲۲:۰۰

<?php

/*

Plugin Name: غیر فعال کردن لینک نظرات

Plugin URI: http://wordpress.org/plugins/hello-dolly/

Description: پلاگین غیر فعال کردن لینک نظرات

Author: shoaib/amer

Version: 1.0.0

Author URI: http://ma.tt/

*/


 

defined('ABSPATH') || exit;



 

function disable_links_in_comments($comment_content) {

    // حذف تمام تگ‌های <a> از محتوای کامنت

    $comment_content = preg_replace('/<a[^>]*>(.*?)<\/a>/i', '$1', $comment_content);

    return $comment_content;

}


 

add_filter('comment_text', 'disable_links_in_comments');


 

function change_nofollow_to_follow($content) {

    // تغییر rel=nofollow به rel=follow

    $content = preg_replace('/<a([^>]+)rel=[\"\']?nofollow[\"\']?([^>]*)>/i', '<a$1rel="follow"$2>', $content);

    return $content;

}


 

add_filter('the_content', 'change_nofollow_to_follow');

add_filter('comment_text', 'change_nofollow_to_follow');


 

// لیست کلمات رکیک

$bad_words = array(

    'خیلی بدی',

    'دوستت ندارم',

    'ازت بدم میاد',

);


 

function censor_bad_words($content) {

    global $bad_words;


 

    // جایگزینی کلمات رکیک با علامت *

    foreach ($bad_words as $word) {

        $pattern = '/' . preg_quote($word, '/') . '/iu'; // الگوی جستجو

        $content = preg_replace($pattern, str_repeat('*', mb_strlen($word)), $content);

    }


 

    return $content;

}


 

// فیلتر برای محتوای پست‌ها و نظرات

add_filter('the_content', 'censor_bad_words');

add_filter('comment_text', 'censor_bad_words');

عامر احراری ۰۶ دی ۱۴۰۳، ۱۳:۲۴
<?php
/*
Plugin Name: غیر فعال کردن لینک نظرات
Plugin URI: http://wordpress.org/plugins/hello-dolly/
Description: پلاگین غیر فعال کردن لینک نظرات
Author: shoaib/amer
Version: 1.0.0
Author URI: http://ma.tt/
*/
defined('ABSPATH') || exit;
function disable_links_in_comments($comment_content) {
    // حذف تمام تگ‌های <a> از محتوای کامنت
    $comment_content = preg_replace('/<a[^>]*>(.*?)<\/a>/i', '$1', $comment_content);
    return $comment_content;
}
add_filter('comment_text', 'disable_links_in_comments');
function change_nofollow_to_follow($content) {
    // تغییر rel=nofollow به rel=follow
    $content = preg_replace('/<a([^>]+)rel=[\"\']?nofollow[\"\']?([^>]*)>/i', '<a$1rel="follow"$2>', $content);
    return $content;
}
add_filter('the_content', 'change_nofollow_to_follow');
add_filter('comment_text', 'change_nofollow_to_follow');
// لیست کلمات رکیک
$bad_words = array(
    'خیلی بدی',
    'دوستت ندارم',
    'ازت بدم میاد',
);
function censor_bad_words($content) {
    global $bad_words;
    // جایگزینی کلمات رکیک با علامت *
    foreach ($bad_words as $word) {
        $pattern = '/' . preg_quote($word, '/') . '/iu'; // الگوی جستجو
        $content = preg_replace($pattern, str_repeat('*', mb_strlen($word)), $content);
    }
    return $content;
}
// فیلتر برای محتوای پست‌ها و نظرات
add_filter('the_content', 'censor_bad_words');
add_filter('comment_text', 'censor_bad_words');
عامر احراری ۰۷ دی ۱۴۰۳، ۱۲:۴۲