All I am trying to do is pass the author ID variable to a query_posts statement so that I can display the last 5 posts by the same author of the existing post but in a different category.
Here is what I have tried:
<?php query_posts('show_posts=5&author=post_author->ID&category_name=deals'); ?>
This obviously isn't working so my question is how do I pass the post_author ID to the 'author' variable?