0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Wordpressのアイキャッチを表示させなくする方法(テーマOnepress)

Last updated at Posted at 2018-03-21

Wordpressのアイキャッチを表示させなくする方法(テーマOnepress)

・Onepressをテーマにして、サイトを構築しています。
・携帯表示にしたときにアイキャッチがうざいので表示を消す。
別のテーマを選びなさいという選択肢もありますが、とりあえず構築したいので突っ込まないでください

アイキャッチ画像を表示させるphpテンプレートタグ

PHPの下記記載があるところが、アイキャッチに該当する模様

☆投稿ページ一覧のアイキャッチを削除したい場合
<template-parts/content.php>

☆タグのページ一覧のアイキャッチを削除したい場合
<template-parts/content-list.php> 

<!-- TOOLS:サムネイルの削除
	<div class="list-article-thumb">
		<a href="<?php //echo esc_url( get_permalink() ); ?>">
			<?php
//			if ( has_post_thumbnail( ) ) {
//				the_post_thumbnail( 'onepress-blog-small' );
//			} else {
//				echo '<img alt="" src="'. get_template_directory_uri() . '/assets/images/placholder2.png' .'">';
//			}
			?>
		</a>
	</div>
-->
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?