links.php
Description: Displays a list of links.
This template includes the following templates:
Template Code
<?php /* Template Name: Links */ ?> <?php get_header(); ?> <div id="content" class="widecolumn"> <h2>Links:</h2> <ul> <?php get_links_list(); ?> </ul> </div> <?php get_footer(); ?>
This template includes the following tags:
get_footer()is a WordPress include tag which includes the filefooter.php.get_header()is a WordPress include tag which includes the fileheader.php.get_links_list()has been deprecated; usewp_list_bookmarks()instead.
HTML Skeleton
[HEADER.PHP] <div id="content" class="widecolumn"> <h2>Links:</h2> <ul> <li id="linkcat-[#]" class="linkcat"> <h2>Blogroll</h2> <ul> <li>[ITEM]</li> </ul> </li> </ul> </div> [FOOTER.PHP]
Related CSS Styles
Resources
- N/A