拆分wordpress标题(艺术家 - 歌名)

时间:2015-01-08 03:14:42

标签: wordpress text split title

有没有办法将标题分成2个文字?并且仅从第一个连字符( - )

中拆分

样品:

输入:艺术家姓名 - 歌曲名称

输出:

我找到了这个,但它不完全是我需要的 Split a WordPress title into two lines

1 个答案:

答案 0 :(得分:1)

你可以试试这个:

$array = explode('-', 'wordpress-title', 2);

Then echo $array[0]; // output wordpress
echo $array[1];  // output  title