This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php echo get_option('home'); ?> <!-- get the home URL --> | |
<?php bloginfo('description'); ?> <!-- display the blog description --> | |
<?php bloginfo('name'); ?> <!-- display the blog name --> | |
<?php bloginfo('template_directory') ?> <!-- get the home URL for template's directory --> | |
<?php echo get_template_directory_uri(); ?> | |
<?php wp_list_pages('sort_order=desc&title_li='); ?> <!-- display the page list in descending order withour title --> | |
<?php wp_list_pages('sort_order=desc&depth=1&title_li='); ?> <!-- display the page list in descending order with "current_page_item" class | |
<?php wp_list_bookmarks(); ?> <!-- display the list of blogrolls --> | |
<?php echo date('Y'); ?> |