Talk:Wordfilter

From Soyjak Wiki, the free ensoyclopedia
Jump to navigationJump to search

speaking of wordfilters, I made one myself that you can put into LocalSettings.php, customize it to your likings - Archivist (talk) 11:10, 10 April 2025 (EST)

$wgHooks['ParserAfterTidy'][] = function ( $parser, &$text ) {
    $replacements = [
        'Normal word that will be filtered' => 'Wordfilter result',
    ];

    $text = str_ireplace(array_keys($replacements), array_values($replacements), $text);
    return true;
};