This document appears to be notes from a presentation or tutorial about customizing WordPress themes. It includes information on the anatomy of WordPress themes, how to edit template files like header.php and style.css, and examples of tweaking a theme by adding images, changing styling with CSS, and inserting publishing dates. Screenshots and code samples are provided to demonstrate these theme customization techniques.
21. HTML
AN AWESOME TITLE
A FANTASTIC BYLINE
In hac habitasse platea dictumst. Nam pulvinar, odio
sed rhoncus suscipit, sem diam ultrices mauris, eu
consequat purus metus eu velit.
Thursday, 25 April 13
22. HTML
AN AWESOME TITLE
A FANTASTIC BYLINE
In hac habitasse platea dictumst. Nam pulvinar, odio
sed rhoncus suscipit, sem diam ultrices mauris, eu
consequat purus metus eu velit.
<h1> </h1>
<h2> </h2>
<p>
</p>
<div>
</div>
Adding Structure and Meaning
Thursday, 25 April 13
23. HTML
<img src = /slideshow/sc2013-19944184/19944184/whereTheImageIs.jpg alt = description>
<a href = thePageLink.pdf> Link Text </a>
<ul>
<li>List Item Text</li>
<li>List Item Text</li>
<ul>
Some More Elements
Thursday, 25 April 13
26. PHP & The Loop
<?php if ( have_posts() ) while (have_posts()) : the_post(); ?>
.... magic! ...
<?php endwhile; endif; ?>
Youll see this a lot.
Thursday, 25 April 13
27. PHP & Template Tags
Youll see these a lot.
<?php the_title(); ?>
<?php the_permalink(); ?>
<?php the_content(); ?>
<?php the_excerpt(); ?>
Thursday, 25 April 13
55. Adding The Picture
<img src = /slideshow/sc2013-19944184/19944184/jordan.jpg alt = A picture of Jordan
id= sidebarPhoto>
sidebar.php
Thursday, 25 April 13
71. Adding Published Date to List
<li>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</li>
Thursday, 25 April 13
72. Adding Published Date to List
<li>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
<p class="meta"><?php the_date(); ?></p>
</li>
Thursday, 25 April 13
73. Adding Published Date to List
<li>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
<p class="meta"><?php the_date(); ?></p>
</li>
Thursday, 25 April 13