如果没有手写内容,我如何在帖子中添加“无可用内容”这几个词
示例:
如果没有添加文本,我想在模板中自动获取“无可用内容”。我想得到一个特定的职位类型,Seriale
.
我怎样才能做到?
在模板中,我有这个
<?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\'
));
?>
SO网友:Ralf912
add_filter( \'the_content\', \'check_empty_postcontent\', 0, 99 ); // filter post content
add_filter( \'the_excerpt\', \'check_empty_postcontent\', 0, 99 ); // filter excerpt content
function check_empty_postcontent( $content ) {
global $post;
$post_type = get_post_type( $post->ID );
return ( empty( $content ) && \'seriale\' === strtolower( $post_type ) ) ?
\'No content available\' : $content;
}
网上有很多关于这方面的文章。