firstChild; $svg->setAttribute( 'class', 'blockify-icon' ); $svg->setAttribute( 'width', '30' ); $svg->setAttribute( 'height', '30' ); $svg->setAttribute( 'title', SLUG ); $paths = $svg->getElementsByTagName( 'path' ); if ( $paths->item( 0 ) ) { /** @var DOMElement $path */ $path = $paths->item( 0 ); $path->setAttribute( 'fill', 'var(--wp--preset--color--primary-600, currentColor)' ); } $content = $dom->saveHTML(); } return $content; }