Posted On October 10, 2021

How To Hide Featured Image in Blog Posts in Single View

kimconnect 0 comments
blog.KimConnect.com >> Codes >> How To Hide Featured Image in Blog Posts in Single View

In WordPress, single posts can have a featured image to help with displaying in List views as well as search engine excerpts (previews). However, such featured images could overwhelm a blog post when they would dominate the upper section of an article. Therefore, it’s often necessary to hide featured images while retaining their prevalence in list views. Here are the steps:

  1. Option 1: install plugin ‘Hide featured image on all single page/post’ 


  2. Option 2: install plugin ‘Conditionally display featured image on singular posts and pages’

    Edit certain pages where featured images should be removed by placing a check mark next to ‘display featured image in post lists only’

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Add User To Group in Active Directory

$userId='kimconnect' $groupName='Remote Desktop Users' function addUserToGroup($userId,$groupName){ $userExists=Get-ADGroupMember $groupName|?{$_.SamAccountName -eq $userId} if(!$userExists){ Add-ADGroupMember -Identity $groupName -Members…

Microsoft IIS-7 Application Pools

Why run applications inside Application pools? It's a recommended practice to isolate applications even if…

PowerShell: Comparing 2 Directories

# Set source and destination$source="C:\temp"$destination="C:\tempcopy"# Mirror the 2 directoriesrobocopy $source $destination /MIR /R:0 /NP# create…