我有问题。我使用wordpress从昨天开始不工作链接 在数据库中我有代码:
<a href="dakjhd">text</a>
但在wordpress的文本编辑器中我有
  text  
我不知道为什么转换为&amp; nbsp
现在我无法添加链接...
请帮忙
步骤:
<a href="dakjhd">text</a>
  text  
答案 0 :(得分:0)
您的代码可能正在使用strip_tags()
从实际HTML中删除代码。您可以使用html_entity_decode
将其恢复为原始格式。
示例:强>
<?php
$link = '<a href="dakjhd">text</a>';
$a = strip_tags($link);
$b = htmlentities($link);
$c = html_entity_decode($b);
echo $a; // output: text
echo $b; //output: <a href="dakjhd">text</a>
echo $c; //output: the actual link
?>
希望能够清除你的怀疑!