আমি নীচের ফাংশন, আমি ডোমডোকামেন্টটি এক্সএমএল, এইচটিএমএল, বডি এবং পি ট্যাগ র্যাপারগুলিকে সংযুক্ত না করে আউটপুট দেওয়ার জন্য লড়াই করছি content প্রস্তাবিত ফিক্স:
$postarray['post_content'] = $d->saveXML($d->getElementsByTagName('p')->item(0));
কেবল তখনই কাজ করে যখন সামগ্রীটির অভ্যন্তরে কোনও ব্লক স্তর উপাদান নেই। যাইহোক, এটি যখন h1 উপাদানটির সাথে নীচের উদাহরণ হিসাবে রয়েছে তখন সেভএক্সএমএল থেকে ফলাফল আউটপুট কেটে যাবে ...
<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;
}