我想从插件中为每个永久链接添加一个id。Jquery只为每个链接返回相同的id。还有别的办法吗?
add_action(\'add id for each loop\', \'test\');
function test() {
?>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("a").each(function(){
$("a").attr(\'id\', \'<?php the_ID(); ?>\');
});
});
</script>
<?php
}
如果我直接将其添加到模板中,效果会很好,因此有没有办法从插件中找到代码并添加/编辑到内容中。php(自定义?循环)模板文件?
// add the id
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
// result
<a href="<?php the_permalink(); ?>" id="<?php the_ID(); ?>"><?php the_title(); ?></a>