在逗号后获得WordPress的标题

时间:2015-08-31 作者:ImNotAwesome

我读到你可以在逗号(,)之前找到标题Get the title before comma

但是想知道我怎么才能得到这个头衔after 逗号(,)?

是否也可以使用strtok()?还是有类似的功能?

谢谢

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

您可以这样使用

<?php
$sTitle =  "Your, Title";// From get_the_title(); or other sources
if(strpos($sTitle , ",")){
    $sTitle = substr($sTitle , strpos($sTitle , ",") + 1);    
} 
echo $sTitle; // You can also trim($sTitle); to remove whitespaces left from substr()
?>