如何删除徽标图像?

时间:2019-01-14 12:07:28

标签: php function

我正在尝试从页面底部删除徽标图像。徽标是通过以下功能生成的:

function addLogoContentBlock($content, $styles) {
if(empty($content['blocks'])) return $content;
$content['blocks'][] = array(
  'type' => 'container',
  'orientation' => 'horizontal',
  'styles' => array(
    'block' => array(
      'backgroundColor' => (!empty($styles['body']['backgroundColor'])) ?
        $styles['body']['backgroundColor'] :
        'transparent'
    )
  ),
  'blocks' => array(
    array(
      'type' => 'container',
      'orientation' => 'vertical',
      'styles' => array(
      ),
      'blocks' => array(
        array(
          'type' => 'image',
          'link' => 'http://www.example.com',
          'src' => Env::$assets_url . '/img/logo.png',
          'fullWidth' => false,
          'alt' => 'logo',
          'width' => '108px',
          'height' => '65px',
          'styles' => array(
            'block' => array(
              'textAlign' => 'center'
            )
          )
        )
      )
    )
  )
);
return $content;
}

如何删除徽标?我尝试将$content['blocks']设置为null,但这没有用。

3 个答案:

答案 0 :(得分:0)

您可以删除此行

          'src' => Env::$assets_url . '/img/logo.png',

来自您的代码。

答案 1 :(得分:0)

您可以使用CSS隐藏该图片

img[alt='logo']{
display: none;
}

您可以通过 alt 属性

捕获它

答案 2 :(得分:0)

 array(
          'type' => 'image',
          'link' => 'http://www.example.com',
          'src' => Env::$assets_url . '/img/logo.png',
          'fullWidth' => false,
          'alt' => 'logo',
          'width' => '108px',
          'height' => '65px',
          'styles' => array(
            'block' => array(
              'textAlign' => 'center',
              'display' => 'none'           // add this string
            )
          )
        )