Donmai

Tags in URL of Posts

Posted under Bugs & Features

But you need that for the tag slideshow...

Whatever, this Javascript will remove the tags bit for links to posts:

var tagList = document.evaluate( "//a[contains(@href,'/posts/') and contains(@href,'?tags=')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null );
for( var i = 0; i < tagList.snapshotLength; i++ )
	tagList.snapshotItem(i).href = tagList.snapshotItem(i).href.replace(/\?tags=.*/,'');
1