このブログ、最近流行りのWordPress(わーどぷれす)を使っています。現在ベーステンプレートとして使わせてもらっているテーマTwentyFourteenで、カテゴリーをクリックした時に表示される「カテゴリー別アーカイブ:〜」が野暮ったかったので消してみました。
備忘録的な投稿なので、関係のない人にはナンノコッチャ?な記事ですがお許しを。今後もたま~にこういうの投稿するかも。メモするよりブログ記事にしちゃったほうが無くならないしね(笑)
「カテゴリー別アーカイブ:」だけ消してカテゴリー名を残したい場合は、カテゴリーテンプレート(category.php)の以下の部分
<h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentyfourteen' ), single_cat_title( '', false ) ); ?></h1>
を、以下のように書き換えます。
<h1 class="archive-title"><?php single_cat_title(); ?></h1>
「カテゴリー別アーカイブ:」とカテゴリー名をまるっと消してしまいたい場合は、カテゴリーテンプレート(category.php)以下のハイライト部分(archive-headerクラス)をごっそり削除します。
get_header(); ?> <section id="primary" class="content-area"> <div id="content" class="site-content" role="main"> <?php if ( have_posts() ) : ?> <header class="archive-header"> <h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentyfourteen' ), single_cat_title( '', false ) ); ?></h1> <?php // Show an optional term description. $term_description = term_description(); if ( ! empty( $term_description ) ) : printf( '<div class="taxonomy-description">%s</div>', $term_description ); endif; ?> </header><!-- .archive-header --> <?php // Start the Loop. while ( have_posts() ) : the_post();
オリジナルのPHPはそのまま残して、子テーマで編集しましょう。
同様に月別アーカイブ、日別アーカイブ、検索結果等も消せそうです。
これでメニューのBLOGから各カテゴリーにジャンプしても上部におかしな空きがなくなりました。