Design Different Style for Different Post Format

Design index.php or single.php for different post format. You can make attractive page for image, video, audio, link or any custom format.

How To Do

Paste given code where you want to showing different design. So open index.php or single.php and paste given code there.

 // Check if the post has the "image" format
if (get_post_format() === 'image') {
<------your-code------->
} else {
<------your-code------->
}

for elseif

if (get_post_format() === 'image') {
<------your-code------->
} elseif (get_post_format() === 'video') {
<------your-code------->
} elseif (get_post_format() === 'link') {
<------your-code------->
} else {
<------your-code------->
}

So use this code on your theme and design web page for post format. Hope this code works perfectly. Thanks for visitng.