Twenty Ten — убираем автора и дату публикации!
В loop.php ищем и удаляем:
<div>
<?php twentyten_posted_on(); ?>
</div><!— .entry-meta —>
Этот фрагмент в двух местах. Первый (в строке 64) — для записей в формате галереи:
<?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?>
<?php if ( ( function_exists( ‘get_post_format’ ) && ‘gallery’ == get_post_format( $post->ID ) ) || in_category( _x( ‘gallery’, ‘gallery category slug’, ‘twentyten’ ) ) ) : ?>
<div id=»post-<?php the_ID(); ?>» <?php post_class(); ?>>
<h2><a href=»<?php the_permalink(); ?>» title=»<?php printf( esc_attr__( ‘Permalink to %s’, ‘twentyten’ ), the_title_attribute( ‘echo=0’ ) ); ?>» rel=»bookmark»><?php the_title(); ?></a></h2><div>
<?php twentyten_posted_on(); ?>
</div><!— .entry-meta —>
Второй (в строке 133) — для всех остальных:
<?php /* How to display all other posts. */ ?>
<?php else : ?>
<div id=»post-<?php the_ID(); ?>» <?php post_class(); ?>>
<h2><a href=»<?php the_permalink(); ?>» title=»<?php printf( esc_attr__( ‘Permalink to %s’, ‘twentyten’ ), the_title_attribute( ‘echo=0’ ) ); ?>» rel=»bookmark»><?php the_title(); ?></a></h2><div>
<?php twentyten_posted_on(); ?>
</div><!— .entry-meta —>
Добавить комментарий