Этот плагин не тестировался с последними 3 основными выпусками WordPress. Скорее всего, он уже не поддерживается и может быть несовместим с текущими версиями WordPress.

Keep Emoticons as Text

Описание

As of the release of 4.3, WordPress removed the «Formatting» section from the Writing settings. Included in there was the option to turn off WordPress’s default action to convert text emoticons to image smilies. This plugin does the same thing as unchecking the «convert to smilies» box that used to be available via the settings.

Установка

  1. Upload the keep-emoticons-as-text directory to the /wp-content/plugins/ directory
  2. Активируйте плагин используя меню ‘Плагины’ в WordPress

Часто задаваемые вопросы

Does this add any overhead to WordPress?

No, it’s one line of code. It’s being posted as a plugin for convenience for those who don’t want to edit their theme functions file.

Отзывы

27.10.2022
The actual functioning PHP code is just one line, which is exactly what it needs to be. I went from "How do I turn this off on my client's site" to Google to an article to installing this plugin to problem completely solved in literally one minute. Thank you for being awesome.
12.04.2017 3 ответа
The super "massive" code of this plugin is, literally, : add_filter( 'option_use_smilies', '__return_false' ); altough for newer PHP 5.3+ I would suggest add_filter('option_use_smilies',function(){ return false; }); I fear the times, when you will have to install separate plugin for every WordPress option...
12.11.2016
spares me unwanted visual clutter - easy and efficient. Thanks a lot.
Посмотреть все 8 отзывов

Участники и разработчики

«Keep Emoticons as Text» — проект с открытым исходным кодом. В развитие плагина внесли свой вклад следующие участники:

Участники

Перевести «Keep Emoticons as Text» на ваш язык.

Заинтересованы в разработке?

Посмотрите код, проверьте SVN репозиторий, или подпишитесь на журнал разработки по RSS.

Журнал изменений

1.0.0

  • Первый релиз