How can i display the order number of the post beside the title of the post. So for example I would have something like this
Rank #1 Title
Rank #2 2nd Title
How can i display the order number of the post beside the title of the post. So for example I would have something like this
Rank #1 Title
Rank #2 2nd Title
Something like this might work for you ( inside http://codex.wordpress.org/The_Loop )
<h2><?php print intval( $post->menu_order ); the_title(); ?></h2>This topic has been closed to new replies.