Skip to content

Instantly share code, notes, and snippets.

<?php
add_action('wp_footer', function(){
if(!function_exists('is_checkout') || !is_checkout()) {
return;
}
?>
@Ephemerich
Ephemerich / remove-img-title-attributes.php
Created March 28, 2018 09:28
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>