如果您的链接位于一个具有给定ID“menu”的div中,那么您可以使用jQuery来完成此操作,因此您可以编写:
<script type="text/javascript">
var links = jQuery(\'#menu\').find(\'a\');
jQuery(links).each(function(){
jQuery(this).addClass(\'news\'); // It will add a class for all links, not an id
jQuery(this).attr(\'id\', \'news\'); // This will add an id, but for all links
}); // choose what do you want, and delete other, if you will not use
</script>
这只是一个变通方法,也是一个丑陋的方法,因为我不知道一个WP函数来检索所有页面链接,也没有人帮你这么做,但我认为你也可以用谷歌搜索它。。。
祝你好运