मैं नीचे फ़ंक्शन कर रहा हूं, मैं सामग्री के आउटपुट से पहले एक्सएमडी , HTML, बॉडी और पी टैग रैपर को जोड़ने के बिना DOMDocument के आउटपुट के लिए संघर्ष कर रहा हूं । सुझाया गया फिक्स:
$postarray['post_content'] = $d->saveXML($d->getElementsByTagName('p')->item(0));
केवल तभी काम करता है जब सामग्री में कोई ब्लॉक स्तर के तत्व नहीं होते हैं। हालाँकि, जब ऐसा होता है, जैसा कि नीचे दिए गए उदाहरण में h1 तत्व के साथ होता है, तो saveXML से परिणामी आउटपुट को काट दिया जाता है ...
<p> अगर आपको पसंद है </ p>
मुझे इस पद के लिए एक संभावित समाधान के रूप में इंगित किया गया है, लेकिन मैं यह नहीं समझ सकता कि इसे इस समाधान में कैसे लागू किया जाए (नीचे दिए गए प्रयासों को देखें)।
कोई सुझाव?
function rseo_decorate_keyword($postarray) {
global $post;
$keyword = "Jasmine Tea"
$content = "If you like <h1>jasmine tea</h1> you will really like it with Jasmine Tea flavors. This is the last ocurrence of the phrase jasmine tea within the content. If there are other instances of the keyword jasmine tea within the text what happens to jasmine tea."
$d = new DOMDocument();
@$d->loadHTML($content);
$x = new DOMXpath($d);
$count = $x->evaluate("count(//text()[contains(translate(., 'ABCDEFGHJIKLMNOPQRSTUVWXYZ', 'abcdefghjiklmnopqrstuvwxyz'), '$keyword') and (ancestor::b or ancestor::strong)])");
if ($count > 0) return $postarray;
$nodes = $x->query("//text()[contains(translate(., 'ABCDEFGHJIKLMNOPQRSTUVWXYZ', 'abcdefghjiklmnopqrstuvwxyz'), '$keyword') and not(ancestor::h1) and not(ancestor::h2) and not(ancestor::h3) and not(ancestor::h4) and not(ancestor::h5) and not(ancestor::h6) and not(ancestor::b) and not(ancestor::strong)]");
if ($nodes && $nodes->length) {
$node = $nodes->item(0);
// Split just before the keyword
$keynode = $node->splitText(strpos($node->textContent, $keyword));
// Split after the keyword
$node->nextSibling->splitText(strlen($keyword));
// Replace keyword with <b>keyword</b>
$replacement = $d->createElement('strong', $keynode->textContent);
$keynode->parentNode->replaceChild($replacement, $keynode);
}
$postarray['post_content'] = $d->saveXML($d->getElementsByTagName('p')->item(0));
// $postarray['post_content'] = $d->saveXML($d->getElementsByTagName('body')->item(1));
// $postarray['post_content'] = $d->saveXML($d->getElementsByTagName('body')->childNodes);
return $postarray;
}