Hey there mackylos,
Hope you’re well today!
Are you looking to remove featured image from blog page or single post pages, or both?
This should be possible with some custom CSS. Please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:
http://ww.wp.xz.cn/plugins/simple-custom-css
To remove it from blog page add the following:
.page-template-template-blog-post .post-thumb {
display: none;
}
If you want to remove it from single post pages then add the following:
.single .post-thumb {
display: none;
}
If the code doesn’t work please post link to your site so I can take a look.
Hope this helps 🙂
Cheers,
Bojan
Olá, boa noite!
Gostaria de remover a data dos meus posts e a informações sobre comentários.
Já procurei por isso e não encontrei em nenhum lugar <?php the_time(‘F jS, Y’) ?>
Estou usando o tema SKT Photo Session.
Fico grato pela ajuda! Abraço
Hi fabianojerico,
I believe easier and safer way would be by hiding it with some CSS code like this:
.postmeta .post-date,
.postmeta .post-comment {
display: none;
}
Cheers,
Predrag