Skip to content

Instantly share code, notes, and snippets.

View trgino's full-sized avatar
eni vici vokke

Cüneyt ÇiL trgino

eni vici vokke
View GitHub Profile
@trgino
trgino / disable.php
Created October 6, 2019 12:52
wordpress disable & remove
<?php
/*disable emojis start*/
function custom_disable_emojis_tinymce($plugins) {
if(is_array($plugins)) {
return array_diff($plugins, array('wpemoji'));
} else {
return array();
}
}