有很多方法可以解决这个问题。其中之一是修改单个CPT岗位模板并替换:
<?php the_title( \'<h1 class="entry-title">\', \'</h1>\' ); ?>
使用:
<h1 class="entry-title"><?php
$separator = \' - \';
echo implode( $separator, array_reverse( explode( $separator, get_the_title() ) ) );
?></h1>
它将做的是:
取标题使用“-”作为分隔符将其分解为多个部分把棋子倒过来再次使用“-”作为分隔符将它们粘合在一起响应结果