• Hello
    I am building a games portal but have small proplem with facebooked theme, could you please help ??
    see the link here: https://www.playgamesflashonline.com/category/action/

    I want display games title at two of columns when people open a category (as link above) .

    As you see at the end of game title display the number of comment, (0) for now, how can I display number of view near the number of comment .

    Below is the code of file category.php

    <?php get_header(); ?>
    <div class="post">
    <h2 class="post-title"><?php single_cat_title('Archive For '); ?></h2>
    <?php if (is_category()) { $posts = query_posts($query_string . '&orderby=date&showposts=-1'); } ?>
    <?php if(have_posts()) : ?>
    <div class="entry">
    <ul>
    <?php while(have_posts()) : the_post(); ?>
    <li>
    <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
    <?php comments_popup_link('(0)', '(1)', '(%)')?><br />
    <small><?php _e('Posted on'); ?> <?php the_time('F j, Y g:i A') ?></small>
    </li>
    <?php endwhile; ?>
    </ul>
    </div>
    
    <?php else : ?>
    <p><b>Not Found</b></p>
    <?php include (TEMPLATEPATH . '/searchform.php'); ?>
    <?php endif; ?>
    </div><!-- post -->
    <?php get_footer(); ?>

    I hope you understand my questions ^^
    Thanks alot .

  • The topic ‘facebooked theme edit help please’ is closed to new replies.