WordPress
Crea un modello per il tipo di messaggio personalizzato
Ricerca…
Creazione di un modello personalizzato per il libro di tipo Post personalizzato
Per creare un modello per i singoli post del nostro tipo di post personalizzato, dobbiamo creare un file chiamato single- post_type_name .php dove post_type_name è il nome del nostro tipo di post personalizzato.
Ad esempio, se il nostro tipo di post personalizzato è chiamato "Libri", dobbiamo creare un file PHP chiamato single- book .php. Si noti che abbiamo utilizzato il nome singolare del nostro tipo di post personalizzato.
Copia il contenuto di single.php dalla cartella dei temi e incollalo nel nuovo modello e salvalo, quindi il modello verrà applicato per la singola pagina del tipo di post personalizzato.
Modelli di tipo di messaggio personalizzato
Archivio tipo di post personalizzato:
Per creare un modello di archivio per un tipo di post personalizzato devi impostare l'argomento has_archive
uguale a true
nella tua funzione register_post_type()
. Nell'esempio seguente viene creato un tipo di post personalizzato per un tipo di messaggio 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,
)
);
}
Per creare un modello per i nuovi tipi di post personalizzati dovrai creare un nuovo file modello. Per creare un modello per le singole pagine del post, dovresti nominarlo single-{post_type}.php
e archive-{post_type}.php
per l'archivio.
Il nome del file per il nostro modello di archivio sarà archive-event.php
e per la pagina dell'evento sarebbe single-event.php
. Entrambi i file dovrebbero trovarsi nella directory principale dei temi.
Un esempio di modello di archivio sarebbe simile a questo. Tirato dal tema di ventidue anni .
<?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();
Modello singolo post personalizzato:
Ecco un esempio di un singolo modello. Tirato dal tema di ventidue anni .
<?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();
Entrambi gli esempi di template stanno tirando in partial per visualizzare il contenuto interno.
Se il tuo tema figlio / genitore ha un modello singolo / di archivio, dovresti usare quel codice come boilerplate per i tuoi nuovi modelli.