Tagged: blog style, featured image
Under general settings -> Blog Style, I’m using “Multi-author Blog ( Displays Gravitar and featured image above )
I would like to remove the featured image from displaying above the blog post – without editing the 100s of posts with featured images.
Also, separate question: If I’m logged in as the admin how do I get the “edit post” link to appear near the post/page title for quick editing?
Thanks in advance,
Dan
Hi,
To remove the featured image, just add this on your custom.css
.big-preview.multi-big {
display: none;
}
Open includes > loop-index.php then find this code
if(has_tag() && is_single())
{
echo '<span class="blog-tags minor-meta">';
echo the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
echo '</span></span>';
}
Replace that with
if(has_tag() && is_single())
{
echo '<span class="blog-tags minor-meta">';
echo the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
echo '</span></span>';
}
edit_post_link();
It will create a neat Edit this link at the bottom.
Regards,
Ismael
Perfect. That’s what I needed. Thanks.