Split post title for styling

时间:2016-02-27 作者:Shyam Prakash

我需要拆分帖子标题并自定义两个字符串,

例如,文章标题为This x That

我需要将此标题显示为This xThat.有没有办法这样展示?

1 个回复
最合适的回答,由SO网友:locomo 整理而成

格式是否始终如您所述?一、 我们可以用“x”作为分隔符来拆分标题吗?如果是这样的话,类似这样的方法会奏效:

add_filter( \'the_title\', \'wp123_custom_title_format\', 10, 2 );
function wp123_custom_title_format( $title ) {

    // if you only want to modify certain posts you can do a check here

    // use \'x\' as your delimiter
    $pieces = explode( "x", $title, 2 );
    if ( 2 == count( $pieces ) {
        $title = \'<span class="boldtext">\' . $pieces[0] . \' x </span>\';
        $title .= \'<span class="normaltext">\' . $pieces[1] . \'</span>\';
    }

    return $title;

}

相关推荐

如何修改WP_INCLUDE/BLOCKS/LATEST_posts.php

我是WordPress开发的初学者,希望得到一些帮助。我在一个简单的WordPress网站上工作。基本上,用户希望在主页上显示最新的帖子。我使用了最新帖子块,并将其设置为显示整个帖子内容,现在用户不希望帖子标题链接到单个帖子页面(因为帖子的内容显示在主页上)。如何安全地修改模板文件,使其像h2标记一样使用,而不是在主题中使用的href标记。我知道您可以创建子主题并修改wp_content 文件,但我不确定如何处理中的文件wp_include. 我读到一些关于修改functions.php 但我不确定,如果