私はカスタムの投稿タイプを使用していて、この プラグイン を使用してカスタムの投稿タイプのアーカイブを表示します。 archive.phpのタイトル?
下記はarchive.phpです。
<?php
/**
* The template for displaying all single posts and attachments
*
* @package WordPress
* @subpackage Twenty_Fifteen
* @since Twenty Fifteen 1.0
*/
get_header(); ?>
<!-- **Main - Starts** -->
<div id="main">
<div class="parallax full-width-bg" style="background: #ffffff;">
<div class="container">
<div class="main-title">
<h1><?php the_archive_title( '<h1 class="page-title">', '</h1>' ); ?></h1>
<p style="color:#dddddd;font-size:13px;font-style:italic;margin: 5px 0px 0px 0px;"><?php the_archive_description( '<div class="taxonomy-description">', '</div>' ); ?></p>
</div>
</div>
</div>
<div class="container">
<!-- Primary Starts -->
<?php if ( have_posts() ) : ?>
<section id="primary" class="with-right-sidebar page-with-sidebar">
<div class="dt-sc-margin30"></div>
<?php while ( have_posts() ) : the_post();
get_template_part( 'content-archive', get_post_format() );
endwhile;?>
<div class="dt-sc-margin80"></div>
<div class="dt-sc-margin80"></div>
</section> <!-- **Primary - Ends** -->
<?php get_sidebar(); ?>
<?php else :
get_template_part( 'content', 'none' );
endif; ?>
</div>
</div>
<?php
wp_footer();
get_footer();
?>
あなたは post_type_archive_title( $prefix = '', $display = true )
を使うことができます:
<h1><?php post_type_archive_title() ?></h1>