Skip to content

Instantly share code, notes, and snippets.

View jonelvinnaorbe's full-sized avatar

Jon Elvin Naorbe jonelvinnaorbe

View GitHub Profile
@jonelvinnaorbe
jonelvinnaorbe / gist:e38bf4b4e577f04e5750
Last active August 30, 2018 12:18
Wordpress Themetation
<?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'); ?>