Hi Friends, Going to write down a simple code block of WordPress which will show experts if excerpts exists else show content. So in simple way you can say WordPress If Excerpt else content.
Below is code :
<?php
if($post->post_excerpt) {
the_excerpt();
} else {
the_content();
}
?>
So above code can be used and it will show excerpt if excerpt exists else it will show content. I hope this small code will be helpful for someone.
I am PHP Freelancer, Hire WordPress Developer India and Hire WordPress Programmer. If you have any projects related to WordPress or PHP you can contact me.
2 Comments
Thanks
Thank you! Just what this newbie needed.