Revert [12133] — remove post image support from Default theme. Too hokey.

git-svn-id: https://develop.svn.wordpress.org/trunk@12180 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2009-11-12 21:54:12 +00:00
parent 813c76d3a2
commit 1b8e16765a
3 changed files with 0 additions and 9 deletions

View File

@ -40,9 +40,6 @@ get_header();
<small><?php the_time('l, F jS, Y') ?></small>
<div class="entry">
<?php if ( has_post_image() ) : ?>
<a href="<?php the_permalink(); ?>"><?php the_post_image( array( 75, 75 ), array( 'class' => 'alignleft' ) ); ?></a>
<?php endif; ?>
<?php the_content() ?>
</div>

View File

@ -17,9 +17,6 @@ if ( function_exists('register_sidebar') ) {
));
}
if ( function_exists( 'add_theme_support' ) )
add_theme_support( 'post-thumbnails' );
/** @ignore */
function kubrick_head() {
$head = "<style type='text/css'>\n<!--";

View File

@ -17,9 +17,6 @@ get_header(); ?>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php if ( has_post_image() ) : ?>
<a href="<?php the_permalink(); ?>"><?php the_post_image( array( 75, 75 ), array( 'class' => 'alignleft' ) ); ?></a>
<?php endif; ?>
<?php the_content('Read the rest of this entry &raquo;'); ?>
</div>