我的代码是if ($link->getAttribute('title') == '' || empty($link->getAttribute('title')))
,我想知道当标签位于帖子底部时如何获得链接标题。
我最近尝试https://wordpress.stackexchange.com/questions/19292/automatically-add-title-attribute-to-links-in-wordpress,但它突破了if ($link->getAttribute('title') == '' || empty($link->getAttribute('title')))
这是我的来源中显示的内容:Tags: <a href="http://revivemediaservices.com/tag/destin-web-design/" rel="tag">Web Design</a>
答案 0 :(得分:0)
我认为问题是你的代码是编码HTML实体,在这种情况下你不需要。为此,您可以获得代码,而不是Web Design。
您需要提供回显/打印这些链接的行。我期待在那里使用html-entitites()
函数。此处需要html-entitites
函数,但有必要仅对此粗体部分进行编码:<a hreft='http://example.com>
示例说明 </a>
,因此您的代码必须在IMO中进行修改。