• Hi all Currently the main page of my blog & every individual post (wandering-online.com) shows Posted by: XXXXX in Categories: XXXXX.
    Using Tags:XXXXX under the Title. I want it to display [Date | Number of Comments| Number of views | Author ]

    Help please

    ankush AT wandering-online.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • //date posted
    the_time('l, F jS, Y');
    
    //for comments on homepage and other template pages
    if(is_home()){
     comments_popup_link('No Comments', '1 Comment', '% Comments');
    }
    else{
      comments_number('No Comments', '1 Comment', '% Comments' );
    }
    
    //author
    the_author();
    ?>

    For number of views you’ll need to use a plugin like wp-postviews.

    Thread Starter achadha7

    (@achadha7)

    Thanks
    but what page do i edit ? Style.css Index.php ????

    Thread Starter achadha7

    (@achadha7)

    Never mond i figured it out

    thanks ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘showing stats on main page / per post’ is closed to new replies.