Changeset 132
- Timestamp:
- 09/20/07 08:38:51 (1 year ago)
- Files:
-
- trunk/functions.php (modified) (1 diff)
- trunk/now-reading/author.php (modified) (1 diff)
- trunk/now-reading/library.php (modified) (2 diffs)
- trunk/now-reading/sidebar.php (modified) (2 diffs)
- trunk/now-reading/tag.php (modified) (1 diff)
- trunk/styles/default.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/functions.php
r129 r132 114 114 } 115 115 116 //add_theme_page($themename . 'Header Options', 'Header Options', 'edit_themes', basename(__FILE__), 'headimage_admin'); 117 118 function headimage_admin(){ 119 120 } 121 116 122 function mytheme_admin() { 117 123 trunk/now-reading/author.php
r62 r132 19 19 <h2>Books by <?php the_book_author() ?></h2> 20 20 21 <?php if( have_books("author={$GLOBALS['nr_author']} ") ) : ?>21 <?php if( have_books("author={$GLOBALS['nr_author']}&num=-1") ) : ?> 22 22 23 23 <ul> 24 24 25 <?php while( have_books("author={$GLOBALS['nr_author']} ") ) : the_book(); ?>25 <?php while( have_books("author={$GLOBALS['nr_author']}&num=-1") ) : the_book(); ?> 26 26 27 27 <li> trunk/now-reading/library.php
r62 r132 1 1 <?php get_header() ?> 2 2 3 <div class=" content">3 <div class="wrapper"> 4 4 5 5 <div id="content" class="now-reading primary narrowcolumn"> 6 7 <div class="post"> 8 6 <div class="wppost"> 9 7 <?php if( can_now_reading_admin() ) : ?> 10 8 … … 81 79 82 80 <?php do_action('nr_footer'); ?> 81 82 </div> 83 83 84 </div>85 86 84 </div> 87 85 trunk/now-reading/sidebar.php
r62 r132 1 <div class="now-reading"> 2 1 3 <h3>Planned books:</h3> 2 4 … … 64 66 <p><a href="<?php library_url() ?>">View full Library</a></p> 65 67 68 </div> trunk/now-reading/tag.php
r62 r132 19 19 <p>Viewing books tagged with “<?php the_tag(); ?>”:</p> 20 20 21 <?php if( have_books("tag={$GLOBALS['nr_tag']} ") ) : ?>21 <?php if( have_books("tag={$GLOBALS['nr_tag']}&num=-1") ) : ?> 22 22 23 23 <ul> 24 24 25 <?php while( have_books("tag={$GLOBALS['nr_tag']} ") ) : the_book(); ?>25 <?php while( have_books("tag={$GLOBALS['nr_tag']}&num=-1") ) : the_book(); ?> 26 26 27 27 <li><a href="<?php book_permalink() ?>"><?php book_title() ?></a> by <a href="<?php book_author_permalink() ?>"><?php book_author() ?></a></li> trunk/styles/default.css
r131 r132 443 443 text-decoration: none; 444 444 } 445 446 .now-reading ul{ 447 list-style: none; 448 }
