我如何在帖子的文本中添加“无内容”

时间:2013-03-06 作者:Batman

如果没有手写内容,我如何在帖子中添加“无可用内容”这几个词

示例:
如果没有添加文本,我想在模板中自动获取“无可用内容”。我想得到一个特定的职位类型,Seriale.

我怎样才能做到?

在模板中,我有这个

<?php 
    if (is_search()) 
        the_excerpt(); 
    else 
        the_content(__(\'Read the rest of this entry &raquo;\')); ?>
<?php 
    if (is_page() or is_single()) 
        wp_link_pages(array(
            \'before\' => \'<p><strong>Pages:</strong> \', 
            \'after\' => \'</p>\', \'next_or_number\' => \'number\'
        )); 
?>

1 个回复
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;

}
网上有很多关于这方面的文章。

结束

相关推荐

Modify excerpt link

我阅读了关于在代码的最后一行添加过滤器的帖子,但不确定这在这里是否可行。http://www.ahy4life.com/resources.php在促销部分的右中列中,“继续阅读->”链接链接链接到了错误的页面。如何更正此问题?<div id=\"globalcontent\"> <?php $featuredPosts = new WP_Query(); $featuredPosts->query(\'showposts=5&ca