Answers for "Inline-Styles der WordPress Tag Cloud entfernen"

0

Inline-Styles der WordPress Tag Cloud entfernen

<?php
/**
 * Remove style from Tag Clouds
 * @author Andreas Hecht
 */
function drweb_remove_tagcloud_inline_style($input){
    return preg_replace('/ style=("|')(.*?)("|')/','',$input);
}
add_filter('wp_generate_tag_cloud', 'drweb_remove_tagcloud_inline_style',10,1);
Posted by: Guest on January-15-2022

Browse Popular Code Answers by Language