firstChild ) { return $content; } /** @var DOMElement $first_child */ $first_child = $dom->firstChild; $first_child->setAttribute( 'style', 'position:' . $position . ';' . $first_child->getAttribute( 'style' ) ); $content = $dom->saveHTML(); } if ( $inset ) { $inset = wp_parse_args( $inset, [ 'top' => 'auto', 'right' => 'auto', 'bottom' => 'auto', 'left' => 'auto', ] ); $dom = dom( $content ); if ( ! $dom->firstChild ) { return $content; } /** @var DOMElement $first_child */ $first_child = $dom->firstChild; $first_child->setAttribute( 'style', 'inset:' . implode( ' ', $inset ) . ';' . $first_child->getAttribute( 'style' ) ); $content = $dom->saveHTML(); } return $content; }