在我的内容搜索中。php模板文件我做了如下操作:
<tr id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<td><?php the_post_thumbnail( \'thumbnail\' ); ?></td>
<td style="padding: 15px;">
<?php
echo \'<h6>\' . ucfirst( get_post_type( get_the_ID() ) ) . \'</h6>\';
the_title( sprintf( \'<h5><a href="%s" rel="bookmark">\', esc_url( get_permalink() ) ), \'</a></h5>\' );
echo \'<p>\' . get_the_excerpt() . \'</p>\';
?>
</td>
</tr>
它在搜索结果页面上返回帖子图像、帖子类型的英文名称、标题和摘录。按搜索词列出的帖子、页面或其他自定义帖子类型。我需要显示翻译成另一种语言的帖子类型名称。