zelart
Ответы в темах
Просмотр 2 ответов — с 1 по 2 (всего 2)
-
Я наверно не совсем верно сформулировал.. мне нужно из этого шаблона с кодом custom-page.php — сделать страницу без хедера, футера и сайдбаров. Только основной текст. Как отключить именно эти ненужные элементы в этом коде?
Спасибо! помогло. другую тему пытаюсь по тому же принципу редактировать -не выходит. Подскажите для чего прописывать стили? И как отключить навигационное меню например? Тема customizr шаблон custom-page.php
<?php /* Template Name: Custom Page Example */ ?> <?php do_action( '__before_main_wrapper' ); ##hook of the header with get_header ?> <div id="main-wrapper" class="<?php echo tc__f( 'tc_main_wrapper_classes' , 'container' ) ?>"> <?php do_action( '__before_main_container' ); ##hook of the featured page (priority 10) and breadcrumb (priority 20)...and whatever you need! ?> <div class="container" role="main"> <div class="row"> <?php do_action( '__before_article_container'); ##hook of left sidebar?> <div id="content" class="<?php echo tc__f( '__screen_layout' , tc__f ( '__ID' ) , 'class' ) ?> article-container"> <?php do_action ('__before_loop');##hooks the header of the list of post : archive, search... ?> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : ##all other cases for single and lists: post, custom post type, page, archives, search, 404 ?> <?php the_post(); ?> <?php do_action ('__before_article') ?> <article <?php tc__f('__article_selectors') ?>> <?php do_action( '__loop' ); ?> </article> <?php do_action ('__after_article') ?> <?php endwhile; ?> <?php endif; ##end if have posts ?> <?php do_action ('__after_loop');##hook of the comments and the posts navigation with priorities 10 and 20 ?> </div><!--.article-container --> <?php do_action( '__after_article_container'); ##hook of left sidebar ?> </div><!--.row --> </div><!-- .container role: main --> <?php do_action( '__after_main_container' ); ?> </div><!--#main-wrapper"--> <?php do_action( '__after_main_wrapper' );##hook of the footer with get_get_footer ?>
Просмотр 2 ответов — с 1 по 2 (всего 2)