За последние 24 часа нас посетили 16674 программиста и 1651 робот. Сейчас ищут 1762 программиста ...

Нужна помощь!!!

Тема в разделе "HTML и CSS", создана пользователем kilat, 8 окт 2014.

  1. kilat

    kilat Новичок

    С нами с:
    7 окт 2014
    Сообщения:
    2
    Симпатии:
    0
    Знакомо ли вам такая платформа, как WordPress? Там есть такая тема, как GeneratePress с index.php код:


    Код (Text):
    1.  
    2. <?php
    3. /**
    4.  * The main template file.
    5.  *
    6.  * This is the most generic template file in a WordPress theme
    7.  * and one of the two required files for a theme (the other being style.css).
    8.  * It is used to display a page when nothing more specific matches a query.
    9.  * E.g., it puts together the home page when no home.php file exists.
    10.  * Learn more: http://codex.wordpress.org/Template_Hierarchy
    11.  *
    12.  * @package Generate
    13.  */
    14.  
    15. get_header(); ?>
    16.  
    17.     <div id="primary" <?php generate_content_class();?>>
    18.         <main id="main" <?php generate_main_class(); ?> itemtype="http://schema.org/Blog" itemscope="itemscope" itemprop="mainContentOfPage" role="main">
    19.         <?php do_action('generate_before_main_content'); ?>
    20.         <?php if ( have_posts() ) : ?>
    21.  
    22.             <?php /* Start the Loop */ ?>
    23.             <?php while ( have_posts() ) : the_post(); ?>
    24.  
    25.                 <?php
    26.                     /* Include the Post-Format-specific template for the content.
    27.                      * If you want to override this in a child theme, then include a file
    28.                      * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    29.                      */
    30.                     get_template_part( 'content', get_post_format() );
    31.                 ?>
    32.  
    33.             <?php endwhile; ?>
    34.  
    35.             <?php generate_content_nav( 'nav-below' ); ?>
    36.  
    37.         <?php else : ?>
    38.  
    39.             <?php get_template_part( 'no-results', 'index' ); ?>
    40.  
    41.         <?php endif; ?>
    42.         <?php do_action('generate_after_main_content'); ?>
    43.         </main><!-- #main -->
    44.     </div><!-- #primary -->
    45.  
    46. <?php
    47. do_action('generate_sidebars');
    48. get_footer();
    Я хочу сделать, чтобы на сайте посты выводились в три колонки. Все перепробывал -- ничто не помогает. ОЧЕНЬ НАДЕЮСЬ НА ВАШУ ПОМОЩЬ!!
     
  2. metadon

    metadon Активный пользователь

    С нами с:
    6 фев 2006
    Сообщения:
    779
    Симпатии:
    0
    Ну похоже the_post() или get_template_part отвечает за вывод списка постов.
    С начало без php реализуйте 3 колонки, а потом с помощью php эти посты расставьте по колонкам.
    В чём конкретно проблема?
     
  3. kilat

    kilat Новичок

    С нами с:
    7 окт 2014
    Сообщения:
    2
    Симпатии:
    0
    Проблема в том, что при вставке готового кода сайт не отвечает. Даже перестаёт открывается ето в wordpress называется "белый екран смерти". Я пробовал всё, все коды, нихрина не помагает(
     
  4. Хыиуду

    Хыиуду Активный пользователь

    С нами с:
    3 июн 2014
    Сообщения:
    618
    Симпатии:
    5
    Включите в php отображение ошибок.