您可以将php strpos函数与substr函数一起使用,以获得所需的部分,例如:
$title = substr($post->post_title,strpos($post->post_title, " - ");
这将在字符串中查找“-”,并返回其后的所有字符。
更新只需将代码更改为:
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__(\'Permanent Link to %s\',\'PureType\'), get_the_title()) ?>">
<?php substr($post->post_title,strpos($post->post_title, " - "); ?>
</a>
</li>