• Добрый день. В виджете хочу удалить встроенное width/height в img, которое встраивает wp в html. Не могу понять как мне обратиться именно к виджету для удаления.

    код для удаления в html width/height
    function wph_remove_attributes($html) {
    $html = preg_replace(‘/(width|height)=\»\d*\»\s/’, «», $html);
    return $html;
    }
    add_filter(‘post_thumbnail_html’, ‘wph_remove_attributes’, 10);
    add_filter(‘image_send_to_editor’, ‘wph_remove_attributes’, 10);

    мой виджет:
    function register_my_widgetsfot(){
    register_sidebar( array(
    ‘name’ => ‘Footer’,
    ‘id’ => ‘footer’,
    ‘description’ => ‘подвал сайта’,
    ‘class’ => »,
    ‘before_widget’ => ‘<div id=»%1$s» class=»side widget %2$s»>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h5 class=»widget-title»>’,
    ‘after_title’ => ‘</h5>’
    ) );
    }

Просмотр 7 ответов — с 1 по 7 (всего 7)
Просмотр 7 ответов — с 1 по 7 (всего 7)
  • Тема «Удаление width/height img» закрыта для новых ответов.