Created
March 28, 2018 09:28
-
-
Save Ephemerich/2bb285bcd04f79c484444853a0bf7ff1 to your computer and use it in GitHub Desktop.
Görsellerin alt text'ini silen WordPress kodu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function add_custom_tooltip(){ | |
| ?> | |
| <script> | |
| jQuery(window).load(function(){ | |
| jQuery('a').removeAttr('title'); | |
| jQuery('img').removeAttr('title'); | |
| }); | |
| </script> | |
| <?php | |
| } | |
| add_action('wp_footer', 'add_custom_tooltip'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment