The Time Saving Copy/Paste Wordpress Cheat Sheet: Basic Template Files Header Functions Navigation Menu
The Time Saving Copy/Paste Wordpress Cheat Sheet: Basic Template Files Header Functions Navigation Menu
style.css style sheet file <?php site_url(); ?> root url for <?php wp_nav_menu(); ?>
website
index.php home page file Specific Navigation Menu
<?php wp_title(); ?> title of
header.php header content file specific <?php wp_nav_menu( array('menu' => 'Project Nav' )); ?>
post/page
single.php single post page file Category Based Navigation
<?php bloginfo('name'); ?> title of site
archive.php archive/category file <ul id="menu">
<?php bloginfo('description'); ?> site
searchform.php search form file description
<li <?php if(is_home()) { ?> class="current-cat" <?php } ?>>
<?php if(have_posts()): ?> check if there are posts <?php while(have_posts()) { ?>
<?php endwhile; ?> closes loop <?php // custom post content code for title, excerpt and featured image ?>
2014.3 ☺