We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

cirio on 04/19/08


Tagged


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

cirio


funzione_blogroll


Published in: PHP 


  1. <?php
  2. /*
  3. Template Name: Blogroll
  4. */
  5. ?>
  6.  
  7. <?php get_header(); ?>
  8.  
  9. <div id="main">
  10.  
  11.  
  12. <ul>
  13. <?php wp_list_bookmarks(); ?>
  14. </ul>
  15.  
  16.  
  17.  
  18. </div>
  19. <?php get_sidebar(); ?>
  20. <?php get_footer(); ?>

Report this snippet 

You need to login to post a comment.