Remove/Disable Featured Image (Origin Theme)
-
My theme (origin) automatically assigns a featured image to my posts. I really don’t like it and would like to stop that madness. What’s the best way to remove all featured images? CSS or plugins?
It’s done automatically so adding/removing any featured image while writing the post doesn’t do anything.
My site selfhosted and is: miison.se
(I just moved my old posts to wordpress, which is way all other posts doesn’t have a featured image)I have found (and tried) a few solutions that unfortunately doesn’t work for me;
Remove code from post.php I deleted (with no effect): <?php if ( current_theme_supports( ‘get-the-image’ ) ) get_the_image( array( ‘meta_key’ => ‘Thumbnail’, ‘size’ => ‘single-thumbnail’, ‘link_to_post’ => false, ‘image_class’ => ‘featured’, ‘attachment’ => false ) ); ?>
Custom CSSI added the following code to my custom css (with no results): .featured-image {display:none;}
Do you have any other suggestions?
- The topic ‘Remove/Disable Featured Image (Origin Theme)’ is closed to new replies.