在wordpress网站上,我正在寻找一些东西,以便我可以禁用在类别帖子中点击标题。
只是希望它们是一个简单的文本而不是一个链接
我该怎么做?
由于
答案 0 :(得分:0)
在wordpress tempplate文件中,您应该看到类似
的内容<a href="<?php the_permalink(); ?>" title="<?php sprintf( __( 'Permanent Link to %s', 'theme-name' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_title(); ?></a>
只需移除<a>
即可。
您也可以执行此客户端站点。
如果你有jQuery,这很容易:
jQuery('.fancy').each(function(_,el){
var el = jQuery(el);
el.text(el.find('a').text())
})