Pelago
Emogrifier::translateCssToXpathPassInline() private WC 1.0
Flexibly translates the CSS selector $trimmedLowercaseSelector to an xPath selector for inline usage.
{} It's a method of the class: Emogrifier{}
No Hooks.
Return
String.
Usage
// private - for code of main (parent) class only $result = $this->translateCssToXpathPassInline( $trimmedLowercaseSelector );
- $trimmedLowercaseSelector(string) (required)
- -
Code of Emogrifier::translateCssToXpathPassInline() Emogrifier::translateCssToXpathPassInline WC 5.0.0
private function translateCssToXpathPassInline($trimmedLowercaseSelector)
{
return $this->translateCssToXpathPassWithMatchClassAttributesCallback(
$trimmedLowercaseSelector,
[$this, 'matchClassAttributesInline']
);
}