Поддержка Темы и шаблоны Отображение саписей

  • Доброго вечера! В общем такое дело, есть шаблон grahpy. все записи категорий должны выглядеть так:
    http://hkar.ru/I0Q4

    Единственная зацепка:
    content-area,
    .sidebar-area {
    margin-bottom: 60px;
    }
    .hentry {
    background: url(«images/line.png») no-repeat center bottom;
    margin-bottom: 48px;
    padding-bottom: 24px;
    }
    .has-sidebar .hentry {
    background: url(«images/line.png») no-repeat left bottom;
    }
    .single .hentry,
    .page .hentry {
    background: none;
    margin-bottom: 60px;
    padding-bottom: 0;
    }

    Пробовал вносить изменения, добился того что записи встали в ряд по 5 записей, но пропали миниатюры.

    В css я дерево, первый сайт строю, стал рыться в коде буквально с неделю. Подскажите, что можно придумать!

Просмотр 1 ответа (всего 1)
  • Автор supercocs

    (@supercocs)

    Создал файл category-slug.php для рубрики, помогите разобрать с кодом кто что откуда унаследует?
    archive.php:

    <?php get_header(); ?>
    
    	<section id="primary" class="content-area">
    		<main id="main" class="site-main" role="main">
    
    		<?php if ( have_posts() ) : ?>
    
    			<header class="page-header">
    				<h1 class="page-title">
    					<?php
    						if ( is_category() ) :
    							single_cat_title( __( 'Category: ', 'graphy' ) );
    
    						elseif ( is_tag() ) :
    							single_tag_title( __( 'Tag: ', 'graphy' ) );
    
    						elseif ( is_author() ) :
    							/* Queue the first post, that way we know
    							 * what author we're dealing with (if that is the case).
    							*/
    							the_post();
    							printf( __( 'Author: %s', 'graphy' ), '<span class="vcard">' . get_the_author() . '</span>' );
    							/* Since we called the_post() above, we need to
    							 * rewind the loop back to the beginning that way
    							 * we can run the loop properly, in full.
    							 */
    							rewind_posts();
    
    						elseif ( is_day() ) :
    							printf( __( 'Day: %s', 'graphy' ), '<span>' . get_the_date() . '</span>' );
    
    						elseif ( is_month() ) :
    							printf( __( 'Month: %s', 'graphy' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'graphy' ) ) . '</span>' );
    
    						elseif ( is_year() ) :
    							printf( __( 'Year: %s', 'graphy' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'graphy' ) ) . '</span>' );
    
    						elseif ( is_tax( 'post_format', 'post-format-aside' ) ) :
    							_e( 'Asides', 'graphy' );
    
    						elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) :
    							_e( 'Galleries', 'graphy');
    
    						elseif ( is_tax( 'post_format', 'post-format-image' ) ) :
    							_e( 'Images', 'graphy');
    
    						elseif ( is_tax( 'post_format', 'post-format-video' ) ) :
    							_e( 'Videos', 'graphy' );
    
    						elseif ( is_tax( 'post_format', 'post-format-quote' ) ) :
    							_e( 'Quotes', 'graphy' );
    
    						elseif ( is_tax( 'post_format', 'post-format-link' ) ) :
    							_e( 'Links', 'graphy' );
    
    						elseif ( is_tax( 'post_format', 'post-format-status' ) ) :
    							_e( 'Statuses', 'graphy' );
    
    						elseif ( is_tax( 'post_format', 'post-format-audio' ) ) :
    							_e( 'Audios', 'graphy' );
    
    						elseif ( is_tax( 'post_format', 'post-format-chat' ) ) :
    							_e( 'Chats', 'graphy' );
    
    						else :
    							_e( 'Archives', 'graphy' );
    
    						endif;
    					?>
    				</h1>
    				<?php
    					if ( $term_description = term_description() ) :
    						printf( '<div class="taxonomy-description">%s</div>', $term_description );
    					elseif ( $author_description = get_the_author_meta( 'description' ) ) :
    						printf( '<div class="author-description">%s</div>', $author_description );
    					endif;
    				?>
    			</header><!-- .page-header -->
    
    			<?php /* Start the Loop */ ?>
    			<?php while ( have_posts() ) : the_post(); ?>
    
    				<?php
    					/* Include the Post-Format-specific template for the content.
    					 * If you want to override this in a child theme, then include a file
    					 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    					 */
    					get_template_part( 'content', get_post_format() );
    				?>
    
    			<?php endwhile; ?>
    
    			<?php graphy_paging_nav(); ?>
    
    		<?php else : ?>
    
    			<?php get_template_part( 'content', 'none' ); ?>
    
    		<?php endif; ?>
    
    		</main><!-- #main -->
    	</section><!-- #primary -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
Просмотр 1 ответа (всего 1)
  • Тема «Отображение саписей» закрыта для новых ответов.