ھي پلگ ان WordPress جي جديد 3 وڏين رليزز سان آزمايو نه ويو آھي. اهو ٿي سگهي ٿو وڌيڪ برقرار يا سپورٽ نه ٿي سگهي ۽ ٿي سگهي ٿو مطابقت جا مسئلا جڏهن ورڈپریس جي وڌيڪ تازي ورزن سان استعمال ڪيو وڃي.

Remove Emoji CSS and JS

وضاحت

This is the best plugin to remove Emoji CSS and JS from the website and improve the performance. You just need to install and activate this plugin to remove Emoji CSS and JS from the website.

Kindly let us know your feedback or comments to add more features in this plugin.

انسٽاليشن

  1. Log in to your WordPress admin panel and go to Plugins -> Add New
  2. Type Remove Emoji CSS and JS in the search box and click on search button.
  3. Find Remove RSS Feed plugin.
  4. Then click on Install Now after that activate the plugin.

OR

  1. Download and save the Remove Emoji CSS and JS plugin to your hard disk.
  2. Login to your WordPress and go to the Add Plugins page.
  3. Click Upload Plugin button to upload the zip.
  4. Click Install Now to install and activate the plugin.

جائزا

22 آڪٽوبر 2021
Just tested this on my staging site. Emojis are all still there. Double-checked here to confirm nothing else was required after activation to remove emojis. Sad. This code works if you add it to the end of your Functions.php file: // Disable emojis in WordPress function disable_emoji_feature() { // Prevent Emoji from loading on the front-end remove_action('wp_head', 'print_emoji_detection_script', 7); remove_action('wp_print_styles', 'print_emoji_styles'); // Remove from admin area also remove_action('admin_print_scripts', 'print_emoji_detection_script'); remove_action('admin_print_styles', 'print_emoji_styles'); // Remove from RSS feeds also remove_filter('the_content_feed', 'wp_staticize_emoji'); remove_filter('comment_text_rss', 'wp_staticize_emoji'); // Remove from Embeds remove_filter('embed_head', 'print_emoji_detection_script'); // Remove from emails remove_filter('wp_mail', 'wp_staticize_emoji_for_email'); // Disable from TinyMCE editor. Currently disabled in block editor by default add_filter('tiny_mce_plugins', 'disable_emojis_tinymce'); /** Finally, prevent character conversion too ** without this, emojis still work ** if it is available on the user's device */ add_filter('option_use_smilies', '__return_false'); } // Disables emojis in WYSIWYG editor function disable_emojis_tinymce($plugins) { if (is_array($plugins)) { $plugins = array_diff($plugins, array('wpemoji')); } return $plugins; } add_action('init', 'disable_emoji_feature'); }
جمع: سڀ 2 تبصرا پڙهو

تعاون ڪندڙ & ڊولپرز

“Remove Emoji CSS and JS” اوپن سورس سافٽ ويئر آهي. ھيٺين ماڻھن ھن پلگ ان ۾ حصو ورتو آھي.

تعاون ڪندڙ

ترجمو ڪريو “Remove Emoji CSS and JS” توهان جي ٻولي ۾.

ڊولپمينٽ ۾ دلچسپي؟

ڪوڊ براؤز ڪريو، چيڪ ڪريو SVN مخزن، يا رڪنيت حاصل ڪريو ڊولپمينٽ لاگ پاران RSS.