Szukaj…


Tworzenie niestandardowego szablonu dla książki typu Niestandardowy wpis

Aby utworzyć szablon dla pojedynczych postów naszego niestandardowego typu postu, musimy utworzyć plik o nazwie single- post_type_name .php, gdzie post_type_name to nazwa naszego niestandardowego typu postu.

Na przykład, jeśli nasz niestandardowy typ posta nosi nazwę „Książki”, musimy utworzyć plik PHP o nazwie single- book .php. Pamiętaj, że użyliśmy pojedynczej nazwy naszego niestandardowego typu postu.

Skopiuj zawartość pliku single.php z folderu motywów i wklej go do nowego szablonu i zapisz, a następnie szablon zostanie zastosowany do indywidualnej strony niestandardowego typu postu.

Niestandardowe szablony typów postów


Niestandardowe archiwum typów postów:

Aby utworzyć szablon archiwum dla niestandardowego typu postu, musisz ustawić argument has_archive na wartość true w funkcji register_post_type() . W poniższym przykładzie tworzony jest niestandardowy typ postu dla typu postu Event.

add_action( 'init', 'create_events_post_type' );
function create_events_post_type() {
  register_post_type( 'event',
    array(
      'labels' => array(
        'name' => __( 'Events' ),
        'singular_name' => __( 'Event' )
      ),
      'public' => true,
      'has_archive' => true,
    )
  );
}

Aby utworzyć szablon dla nowych niestandardowych typów postów, musisz utworzyć nowy plik szablonu. Aby utworzyć szablon dla pojedynczych stron postów, nadaj mu nazwę single-{post_type}.php i archive-{post_type}.php dla archiwum.

Nazwa pliku naszego szablonu archiwum to archive-event.php a dla strony wydarzenia będzie to single-event.php . Oba pliki powinny znajdować się w katalogu głównym kompozycji.

Przykładowy szablon archiwum wyglądałby tak. Wyciągnięto z motywu dwudziestu siedemnastu lat .

<?php
/**
 * The template for displaying archive pages
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package WordPress
 * @subpackage Twenty_Seventeen
 * @since 1.0
 * @version 1.0
 */

get_header(); ?>

<div class="wrap">

    <?php if ( have_posts() ) : ?>
        <header class="page-header">
            <?php
                the_archive_title( '<h1 class="page-title">', '</h1>' );
                the_archive_description( '<div class="taxonomy-description">', '</div>' );
            ?>
        </header><!-- .page-header -->
    <?php endif; ?>

    <div id="primary" class="content-area">
        <main id="main" class="site-main" role="main">

        <?php
        if ( have_posts() ) : ?>
            <?php
            /* Start the Loop */
            while ( have_posts() ) : the_post();

                /*
                 * 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( 'template-parts/post/content', get_post_format() );

            endwhile;

            the_posts_pagination( array(
                'prev_text' => twentyseventeen_get_svg( array( 'icon' => 'arrow-left' ) ) . '<span class="screen-reader-text">' . __( 'Previous page', 'twentyseventeen' ) . '</span>',
                'next_text' => '<span class="screen-reader-text">' . __( 'Next page', 'twentyseventeen' ) . '</span>' . twentyseventeen_get_svg( array( 'icon' => 'arrow-right' ) ),
                'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentyseventeen' ) . ' </span>',
            ) );

        else :

            get_template_part( 'template-parts/post/content', 'none' );

        endif; ?>

        </main><!-- #main -->
    </div><!-- #primary -->
    <?php get_sidebar(); ?>
</div><!-- .wrap -->

<?php get_footer();

Niestandardowy typ pojedynczego szablonu:

Oto przykład jednego szablonu. Wyciągnięto z motywu dwudziestu siedemnastu lat .


<?php
/**
 * The template for displaying all single posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 *
 * @package WordPress
 * @subpackage Twenty_Seventeen
 * @since 1.0
 * @version 1.0
 */

get_header(); ?>

<div class="wrap">
    <div id="primary" class="content-area">
        <main id="main" class="site-main" role="main">

            <?php
                /* Start the Loop */
                while ( have_posts() ) : the_post();

                    get_template_part( 'template-parts/post/content', get_post_format() );

                    // If comments are open or we have at least one comment, load up the comment template.
                    if ( comments_open() || get_comments_number() ) :
                        comments_template();
                    endif;

                    the_post_navigation( array(
                        'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', 'twentyseventeen' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Previous', 'twentyseventeen' ) . '</span> <span class="nav-title"><span class="nav-title-icon-wrapper">' . twentyseventeen_get_svg( array( 'icon' => 'arrow-left' ) ) . '</span>%title</span>',
                        'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', 'twentyseventeen' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Next', 'twentyseventeen' ) . '</span> <span class="nav-title">%title<span class="nav-title-icon-wrapper">' . twentyseventeen_get_svg( array( 'icon' => 'arrow-right' ) ) . '</span></span>',
                    ) );

                endwhile; // End of the loop.
            ?>

        </main><!-- #main -->
    </div><!-- #primary -->
    <?php get_sidebar(); ?>
</div><!-- .wrap -->

<?php get_footer();

Oba przykłady szablonów są częściowe, aby wyświetlić zawartość wewnętrzną.

Jeśli motyw podrzędny / nadrzędny ma szablon pojedynczego / archiwalnego, należy użyć tego kodu jako szablonu dla nowych szablonów.



Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow