Files
krolewskie-miody.pl/wp-content/plugins/wp-all-export/helpers/pmxe_render_xml_attributes.php
2026-04-28 15:13:50 +02:00

7 lines
339 B
PHP

<?php
function pmxe_render_xml_attributes($el, $path = '/')
{
foreach ($el->attributes as $attr) {
echo ' <span class="xml-attr" title="' . esc_attr($path . '@' . $attr->nodeName) . '"><span class="xml-attr-name">' . esc_html($attr->nodeName) . '</span>=<span class="xml-attr-value">"' . esc_attr($attr->value) . '"</span></span>';
}
}