Remove highlight image from post

0

How do I remove the featured image from a post (image posted on post) without removing it from the homepage of the site?

Note: I have an image site with quotes and this is highly problematic because it discourages publication and still repeats the same message in the image twice on the page.

After querying answers to a similar problem, which said that the single.php of the site should be found and remove some lines, I open a new problem:

The Neutral wordpress theme that I use does not have single.php.

Any tips?

Example (my home page) LINK

Posted page and featured image example example

    
asked by anonymous 03.11.2017 / 19:23

1 answer

1

You should check the type of post selected in the post editing page.

If it is a standard post, you should edit the "content.php" file the image is on line 21.

Remove the code:

<?php if ( (function_exists('neutro_has_get_the_image') ? neutro_has_get_the_image() : '' ) ) if (comments_open() && !post_password_required()) 
				comments_popup_link('0', '1', '%','comment-counter'); ?>

				<?php $featured_image = neutro_featured_image_widths();
				if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'size' => $featured_image['size'], 'width' => $featured_image['width'], 'height' => $featured_image['height'], 'image_class' => 'featured-thumbnail', 'before' => '<figure>', 'after' => '</figure>' ) ); ?>	

other files such as: content-aside.php content-audio.php content-status.php and etc ... They can also contain this same code that pulls a highlighted image. I hope I have helped!

    
06.11.2017 / 19:40