Basically this is a database and query question. How do you implement related post in your site, suppose you have this table:
+------+ +------+
+ Post + + Tags +
-------- N : M --------
where post have the body and link m:n to tag. This is a very common scenario of implement tag and post.
so, How do you implement related post in your site?