Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter freekers

    (@freekers)

    Thank you ! The tip of “put it either before the starting
    if dynamic… line or after the endif.” did the trick !
    Thanks again for the quick help !!

    Thread Starter freekers

    (@freekers)

    As said before, I’m trying to copy/paste it in sidebar.php’s code, but it isn’t working, at all :S ( So I’m not using widgets )

    Thanks in advance.

    Thread Starter freekers

    (@freekers)

    Hi !

    I’m trying to copy/paste it in sidebar.php’s code, but it isn’t working, at all :S
    Strange, I have some experience with php/html but I can’t get it to work.

    Sidebar.php:

    <div id="sagtaraf">
       <div class="sayfalist1">
    <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) : else : ?>
    
          <h1>Recent Verschenen</h1>
          <ul><?php get_archives('postbypost', 16); ?></ul>
          <h1>Archieven</h1>
          <ul><?php get_archives('monthly','12'); ?></ul>
    <?php endif; ?>
       </div>
       <div class="sayfalist2">
    <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?>
    <a href="<?php bloginfo('rss2_url'); ?>" title="RSS feed"><img src="<?php bloginfo('template_url'); ?>/images/rss.jpg" alt="rss" style="border:0;"/></a>
          <?php if (function_exists('get_flickrrss')) { ?>
          <h1>Recently Pictures</h1>
          <?php get_flickrrss(); ?>
          <?php } ?>
          <?php if (function_exists('get_recent_comments')) { ?>
          <h1>Last Comments</h1>
          <ul><?php get_recent_comments(); ?></ul>
          <?php } ?>
          <h1>Categorieën</h1>
          <ul><?php wp_list_cats('sort_column=name'); ?></ul>
          <h1>Links</h1>
          <ul>
          <?php get_links(-1, '<li>', '</li>', '', TRUE, 'url', FALSE); ?>
          </ul>
    <?php endif; ?>
       </div>
    </div>

    Thanks in advance !

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