我正在使用 WordPress 和 jQuery Mobile 构建一个移动网站。
我想创建一个在用户点击按钮时出现的自定义小部件区域。
我希望小部件区域中包含的链接看起来像 JQM 按钮。为此,我应该将属性 data-role="button" 添加到小部件中的 'a' 元素。
有没有办法从functions.php向这些'a'元素添加自定义属性?
默认情况下,这是小部件中链接的代码:
<h3 class="widget-title">Categories</h3>
<ul>
<li class="cat-item cat-item-646">
<a title="Some title" href="http://example.com/category/">Category</a>
</li>
...
我需要在“a”元素中添加一个数据角色属性:
<a title="Some title" href="http://example.com/category/" data-role="button">Category</a>
我想知道WP API是否提供了一个过滤器来从functions.php中做到这一点,或者是否可以通过某种方式使用PHP