How can I add in a post the words "No content available" if nothing is ritten
Example:
If there is no text added, i want to get "No content available" automated in my template.
I want to get for a specific Post Type, Seriale.
How can I make that?
In the template i have this
<?php
if (is_search())
the_excerpt();
else
the_content(__('Read the rest of this entry »')); ?>
<?php
if (is_page() or is_single())
wp_link_pages(array(
'before' => '<p><strong>Pages:</strong> ',
'after' => '</p>', 'next_or_number' => 'number'
));
?>