所以目前我的标题看起来像这样。
Z Ft. Fetty Wap - Nobody’s Better (CDQ)
而不是看起来像 Z Ft。 Fetty Wap - 没有人做得更好(CDQ)。
我该如何解决这个问题?我目前正在使用WordPress并将标准the_title
函数展开为类似的内容。
$title = htmlentities(get_the_title ());
$str = explode ("–", $title);
$artist = preg_replace('#\[[a-zA-Z].*\]#','',$str[0]);
$song = preg_replace('#\[[a-zA-Z].*\]#','',$str[1]);
通过这种方式,我可以获得艺术家姓名和歌曲名称的两个部分,并在我觉得合适的地方使用它们。