Skip to content

Instantly share code, notes, and snippets.

@Ephemerich
Created March 28, 2018 09:28
Show Gist options
  • Select an option

  • Save Ephemerich/2bb285bcd04f79c484444853a0bf7ff1 to your computer and use it in GitHub Desktop.

Select an option

Save Ephemerich/2bb285bcd04f79c484444853a0bf7ff1 to your computer and use it in GitHub Desktop.
Görsellerin alt text'ini silen WordPress kodu
<?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