• I would like to display a number before each post title. This number would be the rank of the post in a specific page.
    I’m ranking posts of a category by rating ( custom field ):

    <?php $my_query = new WP_Query(‘category_id=3&posts_per_page=-1&orderby=meta_value&meta_key=rating_all&order=DESC’); ?>

    I would like to add before <?php the_title(); ?> a php tag wich would display “1” before the first post title, “2” before the second post title, “3” before the third post title etc…

    Thanks for your help.

Viewing 1 replies (of 1 total)
  • What happens if you use <?php echo get_post_meta($post->ID, 'rating_all', true);?> (which simply displays the value of the rating_all custom field)?

Viewing 1 replies (of 1 total)
  • The topic ‘Post Number’ is closed to new replies.