Add span tag to anchor text, not to anchor link
This is for search in PHP.
Search is working fine for other fileds, but, title field has link as well.
Example:
$htmlContent = ‘Testing for html tags‘;
So, whenever user search for the keyword “testing”, I have added span tag, but its added to link as well, as the word present there as well.
I want to exclude link, but not the link text.
href link and anchor text will be dynamic.
I just want to add tag for Testing for html tags.
Can somebody help?