Anyone edit this Little Problem for Me (WORDPRESS PROBLEM)

Discussion in 'PHP' started by XTreMe, Mar 6, 2008.

  1. #1

    Attached Files:

    XTreMe, Mar 6, 2008 IP
  2. smatts9

    smatts9 Active Member

    Messages:
    1,089
    Likes Received:
    71
    Best Answers:
    0
    Trophy Points:
    88
    #2
    Link doesn't work. Try putting the code from your sidebar.php file in here.
     
    smatts9, Mar 6, 2008 IP
  3. XTreMe

    XTreMe Banned

    Messages:
    1,226
    Likes Received:
    57
    Best Answers:
    0
    Trophy Points:
    0
    #3
    i have just given you the demo of the theme:(

    can you please download and check it:(
     
    XTreMe, Mar 6, 2008 IP
  4. smatts9

    smatts9 Active Member

    Messages:
    1,089
    Likes Received:
    71
    Best Answers:
    0
    Trophy Points:
    88
    #4
    The link does NOT work.
     
    smatts9, Mar 6, 2008 IP
    bogart and guerilla like this.
  5. XTreMe

    XTreMe Banned

    Messages:
    1,226
    Likes Received:
    57
    Best Answers:
    0
    Trophy Points:
    0
    #5
    XTreMe, Mar 6, 2008 IP
  6. scoopy82

    scoopy82 Active Member

    Messages:
    838
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    70
    #6
    I took a quick look at this theme's code...

    The default sidebar.php file has this:
        <ul><li class="listHeader"><h2><?php _e('Categories'); ?></h2></li>
            <?php wp_list_cats('sort_column=name&optioncount=0&hierarchical=0'); ?>
        </ul>
    PHP:
    Maybe move the function "wp_list_cats" inside the <h2> tags like so?
        <ul><li class="listHeader"><h2><?php _e('Categories'); ?> <?php wp_list_cats('sort_column=name&optioncount=0&hierarchical=0'); ?> </h2></li>
        </ul>
    PHP:
    Also note:
    The theme's default of "optioncount=0" is set not to display post counts... you probably have already changed that.

    And "wp_list_cats" is now "wp_list_categories"... so if you have the latest version... you may want to try that too... with the option "&show_count=1" instead of "optioncount".
     
    scoopy82, Mar 6, 2008 IP