删除所有帖子标题中的前四个字符

时间:2014-02-27 作者:user48252

我有一个wordpress自动日志。。我需要自动删除每个帖子标题的前四个字符。。我怎样才能做到这一点?

2 个回复
SO网友:anu

您可以使用“the\\u title”筛选器(Codex link)

add_filter( \'the_title\', \'lose_four_chars\');

function lose_four_chars($title) {
    if ( is_single()) {
        return substr($title, 4);
    } else {
        return $title;
    }
}

SO网友:Brad Dalton

检查非单个标题

add_filter( \'the_title\', \'lose_four_chars\');

function lose_four_chars($title) {
if ( is_single()) :
    return substr($title, 4);
    else:
    return $title;
    endif;
}

结束

相关推荐

Pagination and Related Posts

是否可以对嵌入在single中的以下相关POST代码使用分页。我的主题的php。 <?php // for use in the loop, list 5 post titles related to first tag on current post $tags = wp_get_post_tags($post->ID); if ($tags) { $first_tag = $