WordPress 文章格式分别有 aside, audio, chat, gallery, i**ge, link, quote, status, video ,对应的中文名称分别: 日志,音频,聊天,相册,图像,链接,引用,状态,**。虽然提供了多种文章类型 ,但是并不是每个文章格式都符合个人需要。今天为大家分享WordPress修改文章格式名称方法。
方法一:
function ren**e_post_for**ts( $safe_text ) {
if ( $safe_text == ‘Quote’ ) {
return ‘Background Dark’;
}
return $safe_text;
}
add_filter( ‘esc_html’, ‘ren**e_post_for**ts’ );
方法二:
add_filter( ‘gettext_with_context’, ‘ren**e_post_for**ts’, 10, 4 );
function ren**e_post_for**ts( $translation, $text, $context, $do**in ) {
$n**es = array(
‘Audio’ => ‘Cus*** N**e’,
‘Chat’ => ‘Cus*** N**e’,
‘Aside’ => ‘Cus*** N**e’,
);
if ( $context == ‘Post for**t’ ) {
$translation = str_replace( array_keys( $n**es ), array_values( $n**es ), $text );
}
ret
两种方法都是基于经典编辑器模式下,对于新版古腾堡编辑器是否支持,仍然未知,需要进行测试,由于时间关系,暂且记录文章,留作后用。
暂无评论内容