在functions.php中添加這段代碼,就可以在邊欄菜單中更換單詞,比如post換成article。你也可以換成自己喜歡的詞。
add_filter( 'gettext', 'change_post_to_article' );
add_filter( 'ngettext', 'change_post_to_article' );
function change_post_to_article( $translated ) {
$translated = str_ireplace( 'Post', 'Article', $translated );
return $translated;
}
來源:wordpress啦