How do I display a list of posts all with the same tag but ordered using the number found in the term_order on the wp_term_relationships table?
I found this code which displays posts by specific category. I just want to do the same thing with tags and using term_order.
<ul>
<?php
global $post;
$myposts = get_posts('numberposts=14&category=8&orderby=name');
foreach($myposts as $post) :
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
Please let me know if you have any clues.
Thanks.