该插件尚未通过WordPress的最新3个主要版本进行测试。 当与较新版本的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.

评价

2022年10月27日
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.
2017年4月12日 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...
2016年11月12日
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

  • Initial release