Revert [12133] — remove post image support from Default theme. Too hokey.
git-svn-id: http://svn.automattic.com/wordpress/trunk@12180 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9c682f5a33
commit
d716198fb7
|
@ -40,9 +40,6 @@ get_header();
|
||||||
<small><?php the_time('l, F jS, Y') ?></small>
|
<small><?php the_time('l, F jS, Y') ?></small>
|
||||||
|
|
||||||
<div class="entry">
|
<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() ?>
|
<?php the_content() ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -17,9 +17,6 @@ if ( function_exists('register_sidebar') ) {
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( function_exists( 'add_theme_support' ) )
|
|
||||||
add_theme_support( 'post-thumbnails' );
|
|
||||||
|
|
||||||
/** @ignore */
|
/** @ignore */
|
||||||
function kubrick_head() {
|
function kubrick_head() {
|
||||||
$head = "<style type='text/css'>\n<!--";
|
$head = "<style type='text/css'>\n<!--";
|
||||||
|
|
|
@ -17,9 +17,6 @@ get_header(); ?>
|
||||||
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
|
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
|
||||||
|
|
||||||
<div class="entry">
|
<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 »'); ?>
|
<?php the_content('Read the rest of this entry »'); ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue