我们可以使用以下工具获取自定义类别和标记基名称:
get_option(\'category_base\', \'Categories\')
get_option(\'tag_base\', \'Tags\')
我们将这些函数包装在ucwords()中,以便将基名称大写,并将“\\u0”替换为“”:
ucwords(str_replace(\'_\',\' \',get_option(\'category_base\', \'Categories\'))
ucwords(str_replace(\'_\',\' \',get_option(\'tag_base\', \'Tags\'))
最后,我们用本地化代码包装了所有这些内容,并添加了单个类别/标记标题:
printf( __( ucwords(str_replace(\'_\',\' \',get_option(\'tag_base\', \'Tags\'))).\' » %s\', \'2010-translucence\' ), \'<span>\' . single_tag_title( \'\', false ) . \'</span>\' );