Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Forum: Fixing WordPress
    In reply to: Widget commands
    Thread Starter blogger1234

    (@blogger1234)

    That did the trick! Thanks again for your help, I really appreciate it. It’s been a long time since I’ve been comfortable with HTML and all its changes.

    Forum: Fixing WordPress
    In reply to: Widget commands
    Thread Starter blogger1234

    (@blogger1234)

    With the suggested change: http://wordpress.pastebin.ca/1821597

    Forum: Fixing WordPress
    In reply to: Widget commands
    Thread Starter blogger1234

    (@blogger1234)

    Unfortunately not. I get a

    Parse error: syntax error, unexpected ‘=’ in /home/content/17/5686317/html/wp-content/themes/aparatus/tabbed-container.php on line 12

    message then preview box stops working.

    Forum: Fixing WordPress
    In reply to: Widget commands
    Thread Starter blogger1234

    (@blogger1234)

    Probably only part… it’s tricky because it is part of a much larger function. The created (who is rather busy) of the theme suggested this, but it doesn’t work either:

    I wouldn’t mess with the popularPosts function – since that was built for specifically that. If you want to pull recent posts – go in the tabbed-container.php and take out

      <?php echo popularPosts(10); ?>

    replace with:

      <?php global $post; $myposts = get_posts(‘numberposts=10′); foreach($myposts as $post) : setup_postdata($post); ?>

    • “><?php the_title(); ?>
    • <?php endforeach; ?>

    He is talking about putting it here:

    <div id=”tabbed-container”>

    <div id=”myTabs” class=”mootabs”>
    <ul class=”mootabs_title”>
    <li title=”Popular”>Popular
    <li title=”RecentComments”>Recent Comments
    <li title=”Tags”>Tags

    <div id=”Popular” class=”mootabs_panel”>

      <?php echo popularPosts(10); ?>

    </div><!–popular–>

    <div id=”RecentComments” class=”mootabs_panel”>

    <?php my_rec_comments(7); ?>

    </div>
    <div id=”Tags” class=”mootabs_panel”>

    <?php wp_tag_cloud(); ?>
    </div>
    </div>
    </div><!–tabbed-container–>

    If its useful to you, the site I’m working on is: http://seattlemiscellany.com/

    And it is the “Popular” tab on the right I want to be most recent. Thanks again for following up with me.

    Forum: Fixing WordPress
    In reply to: Widget commands
    Thread Starter blogger1234

    (@blogger1234)

    Unfortunately, I get a:

    Parse error: syntax error, unexpected T_STRING in /home/content/17/5686317/html/wp-content/themes/aparatus/functions.php on line 244

    When I try that. Any other ideas? Thanks again for providing your thoughts.

    Tyler

Viewing 5 replies - 1 through 5 (of 5 total)